html body标签的几个属性 禁用鼠标右键,禁用鼠标选中文字等

<body oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onselect='document.selection.empty()' oncopy='document.selection.empty()' onbeforecopy='return false' onmouseup='document.selection.empty()'>

最近在代码中看到body标签里面有很多属性,一部分不清楚,因此整理下:

ondragstart="return false" 禁止鼠标在网页上拖动
onselectstart="return false" 禁止鼠标选中文字
onselect='document.selection.empty()' 禁止鼠标选中文字
oncontextmenu="return false" 在页面的Body范围内,当触发客户端的ContextMenu事件时,返回false值,使右键不能弹出
oncopy='document.selection.empty()'禁止复制
onbeforecopy='return false' 禁止复制
onmouseup='document.selection.empty()'

 

原文地址:https://www.cnblogs.com/blueskycc/p/5532573.html