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 排序(http://jqueryui.com/demos/sortable/)。只有当我点击特定的 div 或图像时才可以排序(移动列表)?
例如,仅当我单击黑色箭头时(上例)。
您可以在句柄选项中传递选择器:
$("#sortable").sortable({ handle: ".ui-icon-arrowthick-2-n-s" });
你可以在这个 fiddle中测试它。