ITPUB??ì3
ITPUB论坛 » Web开发 » ASP.NET与AJAX » <iframe>如何禁止编辑、复制的操作

新一届的微软MVP评选已经开始,欢迎各位推荐!

标题: <iframe>如何禁止编辑、复制的操作
离线 cyntha80
中级会员



精华贴数 1
个人空间 0
技术积分 4577 (294)
社区积分 2 (30286)
注册日期 2007-2-8
论坛徽章:20
开发板块每日发贴之星生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠
生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠

发表于 2008-5-14 09:13 
<iframe>如何禁止编辑、复制的操作

如何禁止 <iframe>内的文本的复制编辑操作,在 <iframe>中在链接的对应网页没有禁止编辑和右键,只是想在 <iframe>中禁止。


只看该作者    顶部
离线 hanfeishu
中级会员



精华贴数 0
个人空间 0
技术积分 4108 (350)
社区积分 0 (1285788)
注册日期 2007-2-28
论坛徽章:19
开发板块每日发贴之星生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠
生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠生肖徽章2007版:鼠

发表于 2008-5-14 09:14 
用js控制右键。
具体的你到网上搜一把。!


只看该作者    顶部
离线 cayman811
高级会员



精华贴数 3
个人空间 0
技术积分 8231 (151)
社区积分 6 (14484)
注册日期 2006-8-9
论坛徽章:5
开发板块每日发贴之星开发板块每日发贴之星ITPUB新首页上线纪念徽章   
      

发表于 2008-5-14 09:14 
JScript code
<script type="text/javascript">
    document.oncontextmenu=function(){return false};
    document.ondragstart=function(){return false};
    document.onselectstart =function(){return false};
    document.onselect=function(){document.selection.empty();};//禁止选取
    document.oncopy=function(){document.selection.empty();};//禁止复制
    document.onbeforecopy=function(){return false};
    document.onmouseup=function(){document.selection.empty();};
</script>


只看该作者    顶部
 
    

相关内容


CopyRight 1999-2006 itpub.net All Right Reserved.
北京皓辰广域网络信息技术有限公司. 版权所有
E-mail:Webmaster@itpub.net
京ICP证:010037号 联系我们 法律顾问