使用 jQuery 选择的插件提出标签建议
我正在使用 jquery 选择插件 https://github.com/harvesthq/chosen/ 进行选择表单字段很漂亮。这是所选插件的演示页面 https://github.com/harvesthq/chosen
我在想如果可以使用所选插件制作像 stackoverflow 这样的标签,因为它的一些功能看起来很相似。我还想知道如何使用带有ajax的选择来添加标签建议。
我可以使用其中一个 jquery 标签,但我想知道我是否可以使用选择的标签来做到这一点,这样我就不需要在我的页面中添加另一个脚本。
如果您需要了解更多信息,请告诉我。
I am using jquery chosen plugin https://github.com/harvesthq/chosen/ to make my select form fields pretty. Here is the demo page for chosen plugin https://github.com/harvesthq/chosen
I was thinking if it is possible to make tags like stackoverflow using chosen plugin because some of its feature looks alike. I am also like to know how do i use chosen with ajax to add tag suggestions.
I could use one of those jquery tags out there but i would like to know if i can do it using chosen so i don't need to add another script with my page.
Let me know if you need to know anything more.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您所要做的就是使用 ajax 请求 修改选择框。比使用:
$("#form_field").trigger("list:updated");
告诉“chosen”列表已更新。
All that you have to do is to modify the select box with an ajax request. Than use :
$("#form_field").trigger("list:updated");
to tell "chosen" that the list has been updated.
是的,您所要求的一切都是可能的。 根据我对“有没有办法通过jquery选择的插件动态ajax添加元素?”的回答:
Yes, all of what you ask is possible. From my answer to "Is there a way to dynamically ajax add elements through jquery chosen plugin?":
选择的 koenpunt fork 具有您想要的功能。更多信息 这里
The koenpunt fork of chosen has the functionality you want. More info here