如何使用CSS Without Script在网页中禁用右键单击事件(使用Inspect Element)

时间:2016-11-29 09:58:34

标签: html css

如何使用CSS无脚本在网页中禁用右键单击事件(使用Inspect Element)。使用下面的代码我得到输出但它是脚本。所以我需要使用CSS禁用事件。任何人都可以让我知道答案。

$(document).bind("contextmenu",function(e) {
    e.preventDefault();
})

1 个答案:

答案 0 :(得分:0)

用css我认为不可能

oncontextmenu="return false"添加到html页面中的body标签

<body oncontextmenu="return false">
   .....
</body>

如果要禁用选择

body{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}