禁止双击选中文本
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();
来源:CSDN
作者:qq_42256562
链接:https://blog.csdn.net/qq_42256562/article/details/103635887