求关于“加入禁用选择代码后还能选择网页内容 “的问题解决方法
请问高手,我在网页中加入禁用选择代码后,在有些IE浏览器上还能选择网页内容,不知有谁也遇到过这样的问题,如何解决?以下是我加入的禁用选择、复制的功能
<SCRIPT language=JavaScript>
var message="Function Disabled!";
///////////////////////////////////
function clickIE() {if (document.all) {alert(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {alert(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
</SCRIPT>
<SCRIPT language=JavaScript>
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</SCRIPT>
[ 本帖最后由 shibao12 于 2009-11-11 16:18 编辑 ]