$( ".mylist" ).selectable({
cancel: 'a',
selected:function(event, ui) {
console.log($(ui));
}
})
我想打印所选功能中所选元素的数量。我该怎么做?
答案 0 :(得分:1)
使用jQuery UI selectable的所选元素获取.ui-selected
类,因此您只需使用$(".ui-selected").length
。
如果您在同一页面上有多个可选项,则必须使用父级缩小范围。