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.
これがバグかどうかはわかりませんが、この例では、ドラッグできる要素の下にあるテキストを選択する方法がありません。
フォーム要素と同じ問題。
http://jqueryui.com/demos/draggable/handle.html
何か案は?
「公式の」jQuery の方法は、.disableSelection() を使用することです。しかし、多くの場合、実際には何もしません。この場合、ページ上のすべてのテキストをボルトで固定できます
document.onselectstart = function () { return false; }