我在HTML页面上有一个div,每当我按下鼠标并移动它时,它会显示“不能放下”光标,就像它选择了某些东西一样。有没有办法禁用选择?我尝试了CSS用户选择,但没有成功。
Answers:
的专有变体user-select
将在大多数现代浏览器中运行:
*.unselectable {
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
/*
Introduced in IE 10.
See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
*/
-ms-user-select: none;
user-select: none;
}
对于IE <10和Opera,您将需要使用unselectable
希望不可选择的元素的属性。您可以使用HTML中的属性进行设置:
<div id="foo" unselectable="on" class="unselectable">...</div>
遗憾的是,该属性没有被继承,这意味着您必须在中的每个元素的开始标记中放置一个属性<div>
。如果这是一个问题,则可以改用JavaScript为元素的后代递归执行此操作:
function makeUnselectable(node) {
if (node.nodeType == 1) {
node.setAttribute("unselectable", "on");
}
var child = node.firstChild;
while (child) {
makeUnselectable(child);
child = child.nextSibling;
}
}
makeUnselectable(document.getElementById("foo"));
-moz-none
是要走的路。我会修改答案。
-moz-none
Firebug似乎无法自动完成,尽管它none
是:(-moz-user-select: none
有效)
user-select
只有文字,没有其他元素的种类交易
看来CSS用户选择不会阻止图像拖放...所以..
HTML:
<img src="ico.png" width="20" height="20" alt="" unselectable="on" /> Blabla bla blabla
CSS:
* {
user-select: none;
-khtml-user-select: none;
-o-user-select: none;
-moz-user-select: -moz-none;
-webkit-user-select: none;
}
::selection { background: transparent;color:inherit; }
::-moz-selection { background: transparent;color:inherit; }
JS:
$(function(){
$('*:[unselectable=on]').mousedown(function(event) {
event.preventDefault();
return false;
});
});
event.preventDefault()
似乎可以解决问题(在IE7-9和Chrome中测试):
jQuery('#slider').on('mousedown', function (e) {
var handler, doc = jQuery(document);
e.preventDefault();
doc.on('mousemove', handler = function (e) {
e.preventDefault();
// refresh your screen here
});
doc.one('mouseup', function (e) {
doc.off('mousemove', handler);
});
});
您有选择的某种透明图像吗?通常,拖动图像时会出现“下降”图标。否则,通常在拖动时会选择文本。如果是这样,您可能必须使用z-index将图像放在所有内容的后面。