免費論壇 繁體 | 簡體
Sclub交友聊天~加入聊天室當版主
分享
返回列表 發帖
本帖最後由 无界 於 2017-1-7 22:28 編輯

这个代码效果不好,只需要打开网页后在浏览器输入
  1. javascript:document.body.contentEditable='true'; document.designMode='on'; void 0
複製代碼
即可随便浏览复制。

你不如使用js
  1. <SCRIPT>
  2. function disableselect(e) {
  3.         return false
  4. }

  5. function reEnable() {
  6.         return true
  7. }
  8. file: //if IE4+
  9. document.onselectstart = new Function("return false")
  10. file: //if NS6
  11. if (window.sidebar) {
  12.         document.onmousedown = disableselect
  13.         document.onclick = reEnable
  14. }

  15. function MM_reloadPage(init) { //reloads the window if Nav4 resized
  16.         if (init == true) with(navigator) {
  17.                 if ((appName == "Netscape") && (parseInt(appVersion) == 4)) {
  18.                         document.MM_pgW = innerWidth;
  19.                         document.MM_pgH = innerHeight;
  20.                         onresize = MM_reloadPage;
  21.                 }
  22.         } else if (innerWidth != document.MM_pgW || innerHeight != document.MM_pgH) location.reload();
  23. }
  24. MM_reloadPage(true);
  25. </SCRIPT>
複製代碼
不过通过查看源码,审查元素一样也可以复制
2

評分人數

TOP

返回列表