1. 禁止页面右击
<script type="text/javascript">
document.onmousedown = function () {
if (event.button == 2) {
event.returnValue = false;
alert("右键被禁止啦!");
}
</script>
2. 禁止网页选择,复制,右击
方法一:页面body中加入
<body oncontextmenu="return false" onselectstart="return false" oncopy = "return false">
方法二:js代码实现
<script type="text/javascript">
document.oncontextmenu = function (evt) {
evt.preventDefault();
};
document.onselectstart = function (evt) {
evt.preventDefault();
};
</script></code>
© 版权声明
文章版权归作者所有,未经允许请勿转载。
相关文章
暂无评论...