禁止拖拽时选中文本的方法

▶ JS方法:

// firefox下禁止元素被选取的变通办法        
element.onmousedown = new Function("return false");        
element.onmouseup = new Function("return true");        
//IE下
var clearSelect = 'getSelection' in window ? function(){
    window.getSelection().removeAllRanges();
} : function(){
    document.selection.empty();
};

▶ CSS方法:user-select属性

div {
      -moz-user-select:none;
      -webkit-user-select:none;
      user-select:none;    
}

下面是can I use 的查询结果:

禁止拖拽时选中文本的方法_第1张图片

你可能感兴趣的:(JS)