不允许用户选中文本的两种方法

css:

css: body { -moz-user-select: none;-webkit-user-select:none; }

js:

onselect

  此事件在选择textarea或input内的内容后触发。因此只有input和textarea标签支持。例如:

<input type = 'text' id = 'input‘>
<script>
             var input = document.getElementById('input');
             input.onselect = function(){
                alert("被触发");
            }     
</script>    

  

posted @ 2017-10-21 15:13  PeggyChan  阅读(409)  评论(0编辑  收藏  举报