Jquery 多选插件
我正在使用以下 jquery 多选自动完成插件
http://wilkerlucio.github.com/jquery-multiselect/< /a>
我想在单击按钮时向多选添加值,但找不到这样的方法。有人知道吗?非常感谢您的帮助。
I am using the following jquery multiselect autocomplete plugin
http://wilkerlucio.github.com/jquery-multiselect/
I want to add values to the multiselect on a button click, but couldn't find such a method. Does anyone know one? Your help is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需为您的按钮分配一个单击事件处理程序即可。如果单击,请将值添加到多选组件正在使用的值列表/数组中。
参考:jQuery API - .click()
Just assign a click event handler to your button. If clicked, add values to your list/array of values your multiselect component is using.
Reference: jQuery API - .click()