我想在 Jquery tokenInput 上插入令牌项
在 jQuery 插件:标记自动完成文本输入中,我们有:
$("#tokenize").tokenInput("php-example.php?a=1&b=2", {
hintText: "Type in the names of your favorite TV shows",
noResultsText: "No results",
searchingText: "Searching..."
});
如何使用函数“insert_token”将新的整数添加到列表中,以及如何预填充列表?
谢谢
In jQuery Plugin: Tokenizing Autocomplete Text Entry, we have:
$("#tokenize").tokenInput("php-example.php?a=1&b=2", {
hintText: "Type in the names of your favorite TV shows",
noResultsText: "No results",
searchingText: "Searching..."
});
how can I use the function "insert_token" to add new intes to the list, and how can I pre-populate the list?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需添加
Just add
我进行了修改,允许您以编程方式将令牌添加到列表中。在 add_token 函数下插入以下内容:
因此之后您可以使用以下命令添加项目
I have made a modification that allows you to add tokens to the list programmatically. Insert the following under the add_token function:
So afterwards you can add an item by using
我是新用户,无法发表评论,所以请原谅我写在这里。
@Alexandros Marinos:只有当页面上只有一个 tokeninput 元素时,您的解决方案才是好的?我们可以有其他类似的语法吗?
$("#my_tokeninput_element_1").tokenInput.add_token(19, "阿拉巴马州");
$("#my_tokeninput_element_2").tokenInput.add_token(29, "华盛顿");
I am a new user who can not post comment, so forgive me writing here.
@Alexandros Marinos: Your solution is good only when there is only one tokeninput element on page? Can we have another syntax such as these?
$("#my_tokeninput_element_1").tokenInput.add_token(19, "Alabama");
$("#my_tokeninput_element_2").tokenInput.add_token(29, "Washington");