美文网首页
mousedown chrome 下无法 select()

mousedown chrome 下无法 select()

作者: 14px | 来源:发表于2018-05-28 00:31 被阅读0次

    想做鼠标中键的事件,发现只有 mousedown 可以获取到。
    然而,chrome,不支持通过 mousedown 事件来让一个 input 获取焦点,或者 select();

    <input id="myInput" type="text" value="123" />
    <script>
        $("body").bind("onmousedown",function(){
            $("#myInput").select();
        })
    </script>
    

    相关文章

      网友评论

          本文标题:mousedown chrome 下无法 select()

          本文链接:https://www.haomeiwen.com/subject/asfwjftx.html