JS代码如何实现禁止图片的复制呢?
html xmlns=http://www。w3。org/1999/xhtml head title标题页-学无忧(www。xue51。com)/title script language=javascript function noCopy(control) {alert(版权所有,禁止复制!);return false; } function check() {if(document。 images) //遍历页面中的图像 for(i=0;idocument。images。length;i++)document。images[i]。onmousedown = noCopy; } /...全部
html xmlns=http://www。w3。org/1999/xhtml head title标题页-学无忧(www。xue51。com)/title script language=javascript function noCopy(control) {alert(版权所有,禁止复制!);return false; } function check() {if(document。
images) //遍历页面中的图像 for(i=0;idocument。images。length;i++)document。images[i]。onmousedown = noCopy; } /script 需要在body中添加事件onload,代码如下所示:/headbody onload=check()img src='' width=70 height=50 border=1 alt='我的图片'div table width=300 height=50 border=0 cellspacing=2 cellpadding=0 bgcolor=#FFb609 tr td bgcolor=#ccffff禁止复制网页中所有图片。
。。/td /tr/table/div /body/html。收起