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 を使用して並べ替えおよびドラッグできるようにしたいと考えています。ただし、特定の要素をドラッグすると、他の既存の要素と重なってはいけません。誰か助けてください。
<script> $(function() { $( ".abc" ).draggable(); }); </script> <ul> <li class="abc"> 1 </li> <li class="abc"> 2 </li> <li class="abc"> 3 </li> </ul>