我尝试了::selection, -moz, -webkit, -o, node.setAttribute("unselectable", "on")
个东西,但没有任何效果。有人对此有任何想法吗?
答案 0 :(得分:0)
您可以尝试使用前缀为http://css-tricks.com/almanac/properties/u/user-select/的user-select:none;
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 */
}