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 多选检查这个 已经尝试这样的解决方案:
$('#public-methods').multiSelect('addOption', { value: 42, text: 'test 42', index: 0 });
但我在控制台中收到一条错误消息,例如
"Method addOption does not exist on jquery.multiSelect"
如何解决这些问题?
参考:检查这个
您能否提供指向您正在处理的页面的链接?当我尝试在您使用控制台提供的页面的主页上向示例 multiSelect 添加选项时,我可以轻松添加选项并且效果很好。
$('#aloha').multiSelect('addOption', { value: 'test', 'text': 'wohoo'});
也许您可以在控制台中尝试修改您尝试修改的元素?