<style>
body {
-moz-user-select : none;
}
</style>
<script>
document.oncontextmenu=function(e){return false;}
window.onload = function(){
document.body.onmouseup = function (){document.selection.empty();};
document.body.oncontextmenu = function () {return false;};
document.body.onselectstart = function () {return false;};
document.body.onselect = function () {document.selection.empty()};
}
</script>
网页中屏蔽右键,不允许选择文本.兼容IE,Firefox
最新推荐文章于 2025-04-26 22:36:52 发布
本文介绍了一种通过JavaScript和HTML结合的方式禁止用户在网页上使用鼠标右键菜单及选取文字内容的方法。此技术常用于保护网站内容不被轻易复制。
2088





