比较容易忘记的功能
Posted liuyuexue520
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了比较容易忘记的功能相关的知识,希望对你有一定的参考价值。
1.禁止右键菜单
document.addEventListener("contextmenu", function (e) { e.preventDefault(); });
2. 禁止选中
document.addEventListener("selectstart", function (e) { e.preventDefault(); })
3. 双击禁止选中文字
window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty();
以上是关于比较容易忘记的功能的主要内容,如果未能解决你的问题,请参考以下文章
以下代码片段是不是容易受到 Rails 5 中 SQL 注入的影响?