码迷,mamicode.com
首页 > 其他好文 > 详细

比较容易忘记的功能

时间:2019-12-21 22:35:02      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:文字   default   gets   doc   code   eve   art   tde   lis   

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();

比较容易忘记的功能

标签:文字   default   gets   doc   code   eve   art   tde   lis   

原文地址:https://www.cnblogs.com/liuyuexue520/p/12078415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!