/*
document.οncοntextmenu=new Function("event.returnValue=false;");
document.οncοntextmenu=new Function("event.returnValue=false;");
document.onselectstart=new Function("event.returnValue=false;");
*/
以上代码对于iframe页面失效,以下作了改进
*/
var iframe = document.getElementById('ifm');
iframe.οnlοad=function(){
iframe.contentWindow.document.οncοntextmenu=function(){return false;};
iframe.contentWindow.document.onselectstart=function(){return false;};
};
这样就可以屏蔽网页右键了.是不是很简单!!!
转载请注明:前端录»iframe页面屏蔽网页右键代码
<script src="http://www.wozhuye.com/index.php?m=digg&c=index&a=init&id=20-87-2"></script>
本文介绍了一种有效的方法来屏蔽网页中的iframe元素的右键菜单和文本选中功能,通过修改iframe的onload事件,对内容窗口的document对象进行操作,实现对右键菜单和选中功能的禁用。
8371

被折叠的 条评论
为什么被折叠?



