0
我試過::selection, -moz, -webkit, -o, node.setAttribute("unselectable", "on")
東西,但沒有任何工作。任何人對此有任何想法?如何使用CSS2/js/html使div容器不可選擇
我試過::selection, -moz, -webkit, -o, node.setAttribute("unselectable", "on")
東西,但沒有任何工作。任何人對此有任何想法?如何使用CSS2/js/html使div容器不可選擇
你可以嘗試使用user-select:none;
前綴:http://css-tricks.com/almanac/properties/u/user-select/
element {
-webkit-user-select: none; /* Chrome all/Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
-o-user-select: none; /* Opera */
user-select: none; /* regular */
}