//禁用复制 disableTextSelection: function () { // 给特定的元素添加自定义属性 $("body").attr("oncontextmenu", "window.event.returnValue=false"); //禁用了鼠标右键点击时的上下文菜单。 $("body").attr("onkeypress", "window.event.returnValue=false"); //禁用了按键被按下时的默认行为。按下键并持续按住时触发。 $("body").attr("onkeydown", "window.event.returnValue=false"); //禁用了按键被按下时的默认行为。 $("body").attr("onkeyup", "window.event.returnValue=false"); //禁用了按键被释放时的默认行为。 $("body").attr("ondragstart", "window.event.returnValue=false"); //禁用了拖动元素时的默认行为。 $("body").attr("onselectstart", "event.returnValue=false"); //禁用了文本被选中时的默认行为。 }
标签:body,false,attr,禁用,前端,复制,returnValue,event From: https://www.cnblogs.com/ht955/p/17831040.html