更改 tokeniput jquery 插件以允许值超链接?
我真的很喜欢这个名为 jquery tokeninput 的 jquery 插件,但我想知道如何更改它以使值自动建议为超链接,以便它们将您带到另一个页面!这个插件只允许您向文本字段添加值,例如标记,感谢
插件位于此处:
http://loopj.com /jquery-tokeninput/
插件的代码在这里:
https://github.com/loopj/jquery-tokeninput/blob/master/src/jquery.tokeninput.js
i really love this jquery plugin called jquery tokeninput, but i want to know how i could change it to make the values autosuggested to be hyperlinked so they take you to another page! this plugin only lets you add values to textfield like tagging, thanks
the pluging is located here:
http://loopj.com/jquery-tokeninput/
the code is here for the plugin is here:
https://github.com/loopj/jquery-tokeninput/blob/master/src/jquery.tokeninput.js
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用
onAdd
或onResult
回调。onAdd
不允许您编辑结果,因此我必须使用选择器来编辑令牌。JSON 数据似乎也只解释
id
和name
。如果它支持value
,那么显示的值不必与 url 匹配。我相信 jQueryUI 自动完成 支持这一点。http://jsfiddle.net/sATcY/1
You have to use either the
onAdd
oronResult
callbacks. TheonAdd
doesn't allow you to edit the result so I had to use a selector to edit the token.The JSON data also seems to only intrepret
id
andname
. If it supported avalue
then the displayed value wouldn't have to match the url. I believe the jQueryUI autocomplete supports that.http://jsfiddle.net/sATcY/1