背景
在做一些网页时,经常会有禁用右键、禁止选中等需求。
实现
禁用右键
// 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');
网友评论