Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使页面中的元素可拖动时,一旦拖动它,将选择该元素之外的文本。
我想知道为什么以及如何防止这种情况发生?
这是我的例子:
当我尽可能快地拖动灰色 div 并越过段落时,段落的文本将被选中。
您需要防止默认行为
trigger.onmousedown = function(e) { this.style.cursor = "move"; e.preventDefault(); // this line ... }
小提琴