禁止雙擊選中文本
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();