2011-11-08 75 views

回答

11

使用jQuery你可以嘗試選擇sortables和考多少元素返回:

if ($('.sortable-class').length > 0) {/*something with the class `sortable-class` exists*/} 

上面的代碼假定每個在你的排序元素有類sortable-class。你真正需要的是一個唯一的選擇器,它只能找到你的排序。舉例來說,如果您的sortables是元素的所有孩子那麼你的選擇看起來是這樣的:

HTML

<ul id="sortable_parent"> 
    <li>this is sortable</li> 
    <li>this is also sortable</li> 
</ul> 

JS

if ($('#sortable_parent').children('li').length > 0) {/*atleast one li exists*/} 

這裏的一些文件,如果你進入的是一種東西:http://api.jquery.com/length

+0

這工作完美!謝謝。 –