最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JS實(shí)現(xiàn)禁止鼠標(biāo)右鍵的功能

 更新時(shí)間:2016年10月15日 18:30:05   投稿:mrr  
遇到網(wǎng)頁(yè)上有精美圖片或者精彩文字想保存時(shí),通常大家都是選中目標(biāo)后按鼠標(biāo)右鍵,在彈出菜單中選擇“圖片另存為”或“復(fù)制”來達(dá)到我們的目的。但是,目前有許多網(wǎng)頁(yè)都屏蔽了鼠標(biāo)右鍵,那么用js如何實(shí)現(xiàn)禁止鼠標(biāo)右鍵的功能呢?下面小編給大家介紹下

遇到網(wǎng)頁(yè)上有精美圖片或者精彩文字想保存時(shí),通常大家都是選中目標(biāo)后按鼠標(biāo)右鍵,在彈出菜單中選擇“圖片另存為”或“復(fù)制”來達(dá)到我們的目的。但是,目前有許多網(wǎng)頁(yè)都屏蔽了鼠標(biāo)右鍵,那么用js如何實(shí)現(xiàn)禁止鼠標(biāo)右鍵的功能呢?

1.與禁止鼠標(biāo)右鍵相關(guān)的JS說明

<script type="text/javascript">
document.oncontextmenu=new Function("event.returnValue=false;");
document.onselectstart=new Function("event.returnValue=false;");
</script>

2.禁止鼠標(biāo)右鍵火狐失靈

<!DOCTYPE html>
<html>
<head>
<title>禁止鼠標(biāo)右鍵</title>
<meta charset="utf-8">
</head>
<body>
<div class="poo">這個(gè)頁(yè)面不能使用鼠標(biāo)右鍵</div>
<!-- 禁止鼠標(biāo)右鍵 -->
<script type="text/javascript">
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 
</script> 
</body>
</html>

3.禁止選擇文本

<script type="text/javascript">
var omitformtags=["input", "textarea", "select"];
omitformtagsomitformtags=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>

4.屏蔽ctrl按鍵

document.onkeydown=function(){
if(event.ctrlKey)return false;
}

以上所述是小編給大家介紹的JS實(shí)現(xiàn)禁止鼠標(biāo)右鍵的功能,希望對(duì)大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的,在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評(píng)論

东平县| 班玛县| 明水县| 白城市| 洛阳市| 杨浦区| 湟中县| 嘉峪关市| 项城市| 滕州市| 濉溪县| 东宁县| 元谋县| 泸水县| 石狮市| 上栗县| 上高县| 阆中市| 龙川县| 巫山县| 大安市| 永川市| 孟州市| 梅州市| 凤山县| 花垣县| 合川市| 苏尼特左旗| 罗甸县| 商都县| 宁蒗| 江津市| 罗田县| 闻喜县| 牙克石市| 曲周县| 双辽市| 富民县| 宁海县| 宿州市| 汾西县|