gpt4 book ai didi

css - Opera 10.62 和 IE9 是否有用户选择?

转载 作者:技术小花猫 更新时间:2023-10-29 10:32:52 26 4
gpt4 key购买 nike

我一直在尝试为 Opera 10.62 和 IE9 应用 user-select 但没有成功。我不能/不会用 preventDefault() 的 JavaScript 绑定(bind)事件,因为有太多地方要设置为不可选择,我仍然需要在几个地方保留选择。事实上,我希望整个文档的默认行为是不可选择的,为此我在样式表中设置了以下内容:

* {
-o-user-select: none;
-webkit-user-select: none;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-ms-user-select: none;
user-select: none;
}

在 Firefox 4、Chrome 7 和 Safari 5 上一切都很好。只有 IE9 和 Opera 10.62 没有像我希望的那样工作。有什么想法吗?

PS:我的目标是现代浏览器。

最佳答案

您是否尝试过使用 ::selection {color:currentColor;background:transparent}
对于 Firefox,您可以使用 ::-moz-selection

https://developer.mozilla.org/En/CSS/::selection
http://msdn.microsoft.com/en-us/library/ff974109(v=VS.85).aspx
http://reference.sitepoint.com/css/pseudoelement-selection


//更新//
还有 unselectable属性。

关于css - Opera 10.62 和 IE9 是否有用户选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3900798/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com