美文网首页
网页常用 JS 代码

网页常用 JS 代码

作者: 最尾一名 | 来源:发表于2018-12-25 10:41 被阅读0次

背景

在做一些网页时,经常会有禁用右键、禁止选中等需求。


实现

禁用右键

// html 版
<body oncontextmenu="return false">
...
</body>
// JS 版
<script>
function stop() {
  return false;
}
document.oncontextmenu = stop;
</script>

取消选取、防止复制

// html 版
<body onselectstart=”return false”>
// JS 版
window.document.onselectstart = new Function('event.returnValue=true');

相关文章

网友评论

      本文标题:网页常用 JS 代码

      本文链接:https://www.haomeiwen.com/subject/bwbxlqtx.html