标签: jquery jquery-ui-sortable
我正在使用 $("#images").sortable(); 为了孩子们在小游戏中分类一些图像,我想删除排序能力。 怎么做??
$("#images").sortable();
答案 0 :(得分:3)
试试这个
$( ".selector" ).sortable( "disable" );
答案 1 :(得分:1)
解决方案是使用属性'destroy'
$( "#images" ).sortable('destroy');