如何复制网页禁止复制的内容
答案:2 悬赏:80 手机版
解决时间 2021-03-23 12:09
- 提问者网友:姑娘长的好罪过
- 2021-03-22 20:12
如何复制网页禁止复制的内容
最佳答案
- 五星知识达人网友:爱难随人意
- 2021-03-22 21:40
1、打开网页,点击浏览器菜单栏的“文件”-“另存为”将网页另存到桌面。
2、右键桌面保存下来的网页,打开方式,选择 word,用word打开。
3、word打开后就可以随便的复制里面的文字了。
2、右键桌面保存下来的网页,打开方式,选择 word,用word打开。
3、word打开后就可以随便的复制里面的文字了。
全部回答
- 1楼网友:三千妖杀
- 2021-03-22 22:22
用java禁止复制网页内容<script language=javascript> function key(){ //if(event.shiftkey){ //window.close();} //禁止shift if(event.altkey){ alert('禁止ctrl-c复制本贴内容');} //禁止alt if(event.ctrlkey){ alert('禁止ctrl-c复制本贴内容');} //禁止ctrl return false;} document.onkeydown=key; if (window.event) document.captureevents(event.mouseup); //swordmaple javascript article. //from www.jx165.com //function nocontextmenu(){ //event.cancelbubble = true //event.returnvalue = false; //return false;} function norightclick(e){ if (window.event){ if (e.which == 2 || e.which == 3) return false;} else if (event.button == 2 || event.button == 3){ event.cancelbubble = true event.returnvalue = false; return false;} } function click(){ alert('禁止右键粘贴本贴内容'); window.event.returnvalue=false; } document.oncontextmenu=click; </script> 一个更简单的方法就是在<body>中加入如下的代码,这样鼠标的左右键都失效了. topmargin="0" oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()" 1.禁止网页另存为:在<body>后面加入以下代码: <noscript> <iframe src="*.htm"></iframe> </noscript> 2.禁止网页内容复制.粘贴:在<body>中加入以下代码: <body onmousemove=\hidemenu()\ oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()"> 这两种方法,试试看
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯