端折っていますが、下記のようなHTML&JavaScriptがあるとして、table要素配下の任意行の任意列(下記例では"BBB"と"CCC")を同時にDrag&Dropさせるにはどのようにすれば実現できるでしょうか。
selectableで選択するのでは無く、何らかのセレクタ(下記例ではtr.selected td.name)の指定により対象となる要素を決定づけたいと考えていますが可能でしょうか。
<html> <head> <script type="text/javascript"> $(function(){ $('#upper').droppable(); $('.selected .name').draggable(); }); </script> </head> <body> <div id="upper" style="width:300px;height:300px;"></div> <div id="lower"> <table> <thead><tr><td>name</td><td>memo</td></tr></thead> <tbody> <tr><td class="name">AAA</td><td>あああ</td></tr> <tr class="selected"><td class="name">BBB</td><td>いいい</td></tr> <tr class="selected"><td class="name">CCC</td><td>ううう</td></tr> <tr><td class="name">DDD</td><td>えええ</td></tr> </tbody> </table> </div> </body> </html>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/27 01:40
2019/11/27 02:10
2019/11/27 14:38 編集
2019/11/28 13:35