如何在html中禁止文字的复制
在<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 leftmargin=0 topmargin=0 oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onselect='document.selection.empty()' oncopy='document.selection.empty()' onbeforecopy='return false' onmouseup='document.selection.empty()'>
2016-08-01 · 知道合伙人软件行家
<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()'>
其中各个事件的意义是:
1)、oncontextmenu:单禁用右键菜单
oncontextmenu='return false':来取消鼠标右键
2)、ondragstart:事件在用户开始拖动元素或选择的文本时触发 return false:禁止鼠标在网页上拖动
3)、onselectstart="return false" 禁止选中网页上的内容
4)、onselect:事件会在文本框中的文本被选中时发生。 onselect="SomeJavaScriptCode" ,必需规定该事件发生时执行的 JavaScript。 document.selection.empty():表示文本框被选中时为空
5)、oncopy="return false" 防复制用户在网页上选中的内容
6)、onbeforecopy():默认动作的事件源对象上被取消。
7)、onmouseup:事件会在鼠标按键被松开时发生。 onmouseup="SomeJavaScriptCode",同onselect一样,必需规定该事件发生时执行的 JavaScript。
document.selection.empty():表示文本框被选中时为空
可以将这些代码粘贴试试。
禁止页面中某一块或某一篇文章被选中复制:
<div onselectstart="return false">这段内容不可选,禁止文字被选中</div>
以上代码复制黏贴试试吧!
广告 您可能关注的内容 |