  
- 積分
- 5071
- 威望
- 5071
- 金錢
- 2879
- 最後登錄
- 2025-4-8
       
|
本帖最後由 无界 於 2017-1-7 22:28 編輯
这个代码效果不好,只需要打开网页后在浏览器输入- javascript:document.body.contentEditable='true'; document.designMode='on'; void 0
複製代碼 即可随便浏览复制。
你不如使用js- <SCRIPT>
- function disableselect(e) {
- return false
- }
- function reEnable() {
- return true
- }
- file: //if IE4+
- document.onselectstart = new Function("return false")
- file: //if NS6
- if (window.sidebar) {
- document.onmousedown = disableselect
- document.onclick = reEnable
- }
- function MM_reloadPage(init) { //reloads the window if Nav4 resized
- if (init == true) with(navigator) {
- if ((appName == "Netscape") && (parseInt(appVersion) == 4)) {
- document.MM_pgW = innerWidth;
- document.MM_pgH = innerHeight;
- onresize = MM_reloadPage;
- }
- } else if (innerWidth != document.MM_pgW || innerHeight != document.MM_pgH) location.reload();
- }
- MM_reloadPage(true);
- </SCRIPT>
複製代碼 不过通过查看源码,审查元素一样也可以复制 |
-
2
評分人數
-
|