禁止双击选中文本

版权声明:拒绝盗版 https://blog.csdn.net/weixin_42981560/article/details/86840626

禁止双击选中文本
onselectstart 方法
// ie和chrome都支持的onselectstart 事件, 但是firefox不支持,所以firefox使用css来控制

  <body onselectstart = "return false" style = { -moz-user-select : none }></body>

另一种思路 => 清空选中

  window.getSelection ? window.getSelection().removeAllRanges() : document.selection.e

猜你喜欢

转载自blog.csdn.net/weixin_42981560/article/details/86840626