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

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中禁止选中文字,禁止右击)