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.
Jquery UIDraggableと同じ要素Contenteditableで連携していません。Divこれに対する回避策はありますか?
Draggable
Contenteditable
Div
例:jsfiddle
jQuery のドラッグ可能である理由は、要素のクリック イベントをハイジャックすることです。コード内でこの修正を使用できます。
$('.edit').draggable().bind('click', function(){ $(this).focus(); })
フィドル: http://jsfiddle.net/EexHH/3/