我爱编程

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

2018-06-10  本文已影响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

上一篇 下一篇

猜你喜欢

热点阅读