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.
我曾尝试使用 jquery ui selectable 来解决问题,但它没有按预期工作。当我选择列表项目时,内部项目也在选择,我需要为所选项目添加一个类。这是我的东西的演示。
演示
$(".itemlist").selectable();
试试这个
$(".itemlist").selectable({ filter: 'li' });
在您的 javascript 中替换以下代码:
$(".itemlist").selectable({ filter: "li" });
希望能帮助到你。