网页中禁止使用鼠标右键操作
Posted 遇见Time
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网页中禁止使用鼠标右键操作相关的知识,希望对你有一定的参考价值。
直接在前端加入下列代码即可实现。
<script type="text/javascript">
//禁止右键
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;
}
}
</script>
以上是关于网页中禁止使用鼠标右键操作的主要内容,如果未能解决你的问题,请参考以下文章