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()'

上一篇:【Qt】Qt之密码框不可选中、复制、粘贴、无右键菜单等【转】


下一篇:单源最短路径算法:迪杰斯特拉 (Dijkstra) 算法(二)