美文网首页我爱编程
html中禁止选中文字,禁止右击

html中禁止选中文字,禁止右击

作者: 胜过夜的美 | 来源:发表于2018-06-10 10:55 被阅读0次

1、通过css的方式

*{

moz-user-select: -moz-none;

-moz-user-select: none;

-o-user-select:none;

-khtml-user-select:none;

-webkit-user-select:none;

-ms-user-select:none;

user-select:none;

}

2、通过在body标签中添加如下属性:

前面一句是禁止右键的,后面一句是禁止复制的。

3、在js中添加如下两行语句:

//禁止页面选择以及鼠标右键

document.oncontextmenu=function(){return false;};

document.onselectstart=function(){return false;};

内容参考地址:https://blog.csdn.net/u012106397/article/details/53501734

相关文章

网友评论

    本文标题:html中禁止选中文字,禁止右击

    本文链接:https://www.haomeiwen.com/subject/lbjfeftx.html