HTML页面禁止右键禁止选择和复制怎么做
.no-user-select {
-webkit-touch-callout: none;
/*系统默认菜单被禁用*/
-webkit-user-select: none;
/*webkit浏览器*/
-khtml-user-select: none;
/*早期浏览器*/
-moz-user-select: none;
/*火狐*/
-ms-user-select: none;
/*IE10*/
user-select: none;
}
function noSelect () {
var body= $("body").addClass('no-user-select')[0];
body.oncontextmenu=function (){return false}
body.ondragstart=function (){return false}
body.onselectstart=function (){return false}
body.onbeforecopy=function (){return false}
body.onselect=function (){return false}
body.oncopy=function (){return false}
body.onmouseup=function (){return false}
}
noSelect()版权属于:Joyber
本文链接:https://blog.qqvbc.com/default/788.html
转载时须注明出处及本声明