css 設置方法:
-moz-user-select: none; /*火狐*/
-webkit-user-select: none; /*webkit瀏覽器*/
-ms-user-select: none; /*IE10*/
-khtml-user-select: none; /*早期瀏覽器*/
user-select: none;
js 設置方法:
window.getSelection? window.getSelection().removeAllRanges():document.selection.empty();
對比不一樣:css
css 的設置方法是禁止用戶選中文字,不管是不是在拖拽效果下;html
js 的設置方法是爲了保證在拖拽時,禁止文字選中;web
代碼示例以下:瀏覽器
document.onmousemove = function () { window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty(); }
這樣設置後,當鼠標在拖拽的時候就不會選中文字了spa