我阻止了在我的网站上复制和选择文本和元素:
<body oncontextmenu="return false" onselectstart="return false" onselect="return false" oncopy="return false">
但是现在我只需要在一个 div 中启用它,所以我尝试了:
<div class="somediv" oncontextmenu="" onselectstart="" onselect="" oncopy="">You can select and copy that text.</div>
当然,它不起作用。我该如何启用它?谢谢 :)