火狐浏览器禁用鼠标右键和复制?

 我来答
火狐
2014-02-21 · Firefox,最快最安全的上网体验
火狐
Mozilla Firefox火狐浏览器,是一款开放安全的开源浏览器,全球拥有5亿用户。
向TA提问
展开全部
  尊敬的用户,您好!很高兴为您答疑
  禁用右键:oncontextmenu="window.event.returnValue=false";
  禁止复制:oncopy="return false;"oncut="return false;"
  不过这些对于有心进行您网站内容复制的人来说,没有什么实际的意义。目前比较流行的做法是在页面加隐藏的混淆内容,增加内容窃取者的时间成本,降低其窃取精度。
  希望我的回答对您有所帮助,如有疑问,欢迎继续咨询我们。
真的不能再低啦
2011-11-17 · TA获得超过3.2万个赞
知道大有可为答主
回答量:1.9万
采纳率:0%
帮助的人:2.5亿
展开全部
<script type="text/javascript">
function key(){
if(event.shiftKey){
window.close();}
//禁止Shift
if(event.altKey){
window.close();}
//禁止Alt
if(event.ctrlKey){
window.close();}
//禁止Ctrl
return false;}
document.onkeydown=key;
if (window.Event)
document.captureEvents(Event.MOUSEUP);
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;}
}
//禁右键
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>
<body onselectstart="return false"; onpaste="return false";>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
瘦_瘦_瘦_瘦
2011-11-05
知道答主
回答量:31
采纳率:0%
帮助的人:10.4万
展开全部
没有啊 不过火狐有的时候要下一些插件
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式