美文网首页
js禁止双击选中文本

js禁止双击选中文本

作者: 有田春雪 | 来源:发表于2018-06-25 13:46 被阅读0次

    禁止双击选中文本

    onselectstart 方法

      // ie和chrome都支持的onselectstart 事件, 但是firefox不支持,所以firefox使用css来控制
      <body onselectstart = "return false" style = { -moz-user-select : none }></body>
    

    另一种思路 => 清空选中

      window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty(); 
    

    相关文章

      网友评论

          本文标题:js禁止双击选中文本

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