如何使用css2 / js / html使div容器无法选择

时间:2014-03-13 22:26:29

标签: html css

我尝试了::selection, -moz, -webkit, -o, node.setAttribute("unselectable", "on")个东西,但没有任何效果。有人对此有任何想法吗?

1 个答案:

答案 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 */
}

测试页:http://codepen.io/gc-nomade/pen/owGfz