我有onclick事件的div。从内部点击此元素文本后得到标记(选择)。 http://imgur.com/a/1f2ki http://imgur.com/a/qAFSv 我该如何删除?
答案 0 :(得分:3)
CSS很容易解决:
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
然后将noselect
课程添加到您不想要选择的元素中。