在实现方法之后,我不能再使用输入字段来输入数据。cancel
sortable
$(function() {
$( ".sortable" ).sortable({
connectWith: ".connected-sortable",
cancel: ".not-sortable",
update: function(){
// php update...
}
});
});
所有输入字段都可以正常工作,不 cancel
知道如何解决这个问题?或者,也许我在 html 代码中犯了一些错误,等等?
这是测试页面 -