在jquery中获取ul中所选项的id

时间:2015-12-23 16:38:56

标签: jquery ajax symfony

我使用symfony和twig,我想使用jquery和ajax获取所有id所选项目。

这是我的代码

enter image description here

这是输出

enter image description here

我想要的是jquery中的一个函数,它为我返回一组选定的项目。

1 个答案:

答案 0 :(得分:3)

循环遍历ul中的每个li并将id添加到变量:

var ids = [];
$('li.ui-selected').each(function(){
    ids.push(this.id);
});