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.
我 $("#images").sortable(); 用于在儿童小游戏中对一些图像进行排序,我想删除排序能力。怎么做 ??
$("#images").sortable();
尝试这个
$( ".selector" ).sortable( "disable" );
解决方案是使用具有“destroy”属性的相同功能
$( "#images" ).sortable('destroy');