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の親divを作成し、一緒にドラッグする方法を教えてもらえますか?
divの「window」とdivの「titleBar」があります。titleBarをドラッグするとき、ウィンドウも一緒にドラッグします。JQueryダイアログがどのように動作するか。
ありがとう。
答えを見つけました。
draggable() 呼び出しに渡されるオプション「cancel」および「handle」を使用すると、要素のドラッグをキャンセルし、要素のドラッグの開始を制限できます。例:
window.draggable({ cancel: ".titleBarButton, .titleBarButtons", ハンドル: ".titleBar", }))