不一定完全有效,但可以防止大部分用户[滑稽]
禁用右键菜单
▪第一种:document.oncontextmenu = new Function(“return false;”);
▪第二种: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;
}
}
接下来我们评论区更新[滑稽]![图片[1]-网站防扒JS代码技术合集-朝晞小屋](https://image.baidu.com/search/down?url=http://cdn.u1.huluxia.com/g4/M02/61/02/rBAAdmLhOcOAEyCmAACPxUa0onU667.jpg)
![图片[2]-网站防扒JS代码技术合集-朝晞小屋](https://image.baidu.com/search/down?url=http://cdn.u1.huluxia.com/g4/M02/61/02/rBAAdmLhOcOAFlJ6AAPBJUNt7ig097.png)
![图片[3]-网站防扒JS代码技术合集-朝晞小屋](https://image.baidu.com/search/down?url=http://cdn.u1.huluxia.com/g4/M02/61/02/rBAAdmLhOcSAStIWAALi9peht4w106.png)
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END





















暂无评论内容