我尝试使用jquery-ui-sortable对某些按钮进行排序。看到: https://jsfiddle.net/k4kpfrcm/2/
<div id="sort">
<button>test1</button>
<button>test1</button>
<button>test1</button>
</div>
$("#sort").sortable();
但它不起作用。 这有什么不对?
我怎样才能使这个工作?
答案 0 :(得分:3)
使用选项cancel
$("#sort").sortable({cancel: ''});
因为cancel选项设置为input,textarea,button,select,option
所以按钮不会处理可排序。