1

我已经申请了以下body标签,这使我的整个身体无法选择

-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;

但我只想让某些标签可选,比方说,我想让#selectme 标签启用选择文本,所以我在#selectme CSS 下使用以下内容,但它似乎不起作用。任何解决方案?我不喜欢包含 javascript。

-webkit-touch-callout:default;
-webkit-user-select:auto;
-khtml-user-select:auto;
-moz-user-select:auto;
-ms-user-select:auto;
user-select:auto;
4

1 回答 1

1

尝试在 css 中使用Universal Selector而不是 body,然后嵌入到您想要选择的所需元素中......

CSS:-

* {
    -moz-user-select: -moz-none;
}

h1 {
    -moz-user-select: text;
    font-size: 24px;
    margin-bottom: 5px;
}

试试这个演示:- http://jsfiddle.net/KqJ7R/

希望对你有帮助 谢谢...

于 2013-07-12T07:10:15.750 回答