欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

onselectstart和onselect的使用方法

程序员文章站 2022-04-22 18:58:23
...
1.onselectstart

  这个事件主要是用于禁止选择网页中的文字。代码为:


document.onselectstart =function(){
            return false;
        }

  另外ff/opera不支持此事件,ff可以用css控制:css: body { -moz-user-select: none; }。webkit浏览器可以使用“-khtml-user-select”,当然也可以使用onselectstart事件来阻止用户选定元素内文本。

  注意此事件不支持对input和textarea无效。

2.onselect

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

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

以上就是onselectstart和onselect的使用方法的详细内容,更多请关注其它相关文章!