<script type="text/javascript">
function clearSelection() {
var sel;
if (document.selection && document.selection.empty) {
document.selection.empty();
} else if (window.getSelection) {
sel = window.getSelection();
if (sel && sel.removeAllRanges)
sel.removeAllRanges();
}
}
</script>
<div ondblclick="clearSelection()">Some text goes here.</div>
4条答案
按热度按时间mhd8tkvw1#
在(Mozilla,Firefox,Camino,Safari,谷歌浏览器)中,您可以使用此:
对于IE,没有CSS选项,但是可以捕获ondragstart事件,并返回false;
更新
自2008年以来,浏览器对此属性的支持已经扩展。
https://www.w3schools.com/csSref/css3_pr_user-select.php
8ehkhllq2#
您可以使用此CSS来隐藏选择颜色(IE不支持):
lndjwyie3#
您可以:
snvhrwxg4#
希望这是你要找的。