欧美日韩一区二区三区四区不卡,日韩欧美视频一区二区三区四区,久久精品欧美一区二区三区不卡,国产精品久久久乱弄

咨詢電話:186 7916 6165 咨詢電話:186 7916 6165 (微信同號(hào))    在線QQ:181796286
NEWS BLOG ·
學(xué)無(wú)止境
關(guān)注開(kāi)優(yōu)網(wǎng)絡(luò) 關(guān)注前沿
JS 退出系統(tǒng)并跳轉(zhuǎn)到指定頁(yè)面
沒(méi)有了

js屏蔽瀏覽器右鍵菜單,粘貼,復(fù)制,剪切,選中

發(fā)表日期:2021-05-28    文章編輯:南昌開(kāi)優(yōu)網(wǎng)絡(luò)    瀏覽次數(shù):3163    標(biāo)簽:

<script type="text/javascript">
//屏蔽右鍵菜單
document.oncontextmenu = function (event){
	if(window.event){
		event = window.event;
	}try{
		var the = event.srcElement;
		if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
			return false;
		}
		return true;
	}catch (e){
		return false; 
	} 
}

//屏蔽粘貼
document.onpaste = function (event){
	if(window.event){
		event = window.event;
	}try{
		var the = event.srcElement;
		if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
			return false;
		}
		return true;
	}catch (e){
		return false;
	}
}

//屏蔽復(fù)制
document.oncopy = function (event){
	if(window.event){
		event = window.event;
	}try{
		var the = event.srcElement;
		if(!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
			return false;
		}
		return true;
	}catch (e){
		return false;
	}
}

//屏蔽剪切
document.oncut = function (event){
	if(window.event){
		event = window.event;
	}try{
		var the = event.srcElement;
		if(!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
			return false;
		}
		return true;
	}catch (e){
		return false;
	}
}

//屏蔽選中
document.onselectstart = function (event){
	if(window.event){
		event = window.event;
	}try{
		var the = event.srcElement;
		if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
			return false;
		}
		return true;
	} catch (e) {
		return false;
	}
}
</script>
主站蜘蛛池模板: 达日县| 潜江市| 清水河县| 盐山县| 宣化县| 蓬莱市| 金阳县| 丰都县| 临沧市| 北流市| 宜阳县| 竹山县| 铁岭市| 千阳县| 绥滨县| 靖远县| 三门峡市| 勃利县| 枣强县| 莱西市| 乌苏市| 磐石市| 长乐市| 湖南省| 伊宁市| 馆陶县| 长汀县| 兖州市| 渝中区| 西华县| 綦江县| 仙桃市| 武义县| 宁城县| 孝义市| 鄂州市| 奉贤区| 温泉县| 上饶市| 旬阳县| 洞头县|