用js onselectstart事件鼠标禁止选中文字
Posted 看着风跑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用js onselectstart事件鼠标禁止选中文字相关的知识,希望对你有一定的参考价值。
用js可以在页面中写 onselectstart="return false" 比如说:
<div style="width:200px;height:200px;" onselectstart="return false">这里面的文字是不能被鼠标选中的</div>
firefox 实现就更简单了
<div style=“width:200px;height:200px;-moz-user-select:none;”>啦啦啦??</div>
你直接在:<body onselectstart="return false"> 这里加的话, 整个页面都不能复制文字了。。 如果是针对IE浏览器的话 ,CSS 应该可以这样写,代码如下
<style type="text/css"> .aa{gn:expression_r(this.onselectstart=function(){return false;})} </style> <div class="aa"> 啦啦啦啦 </div>
以上是关于用js onselectstart事件鼠标禁止选中文字的主要内容,如果未能解决你的问题,请参考以下文章