问题标签 [tag-it]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - jQuery tagit 插件需要 document.ready
我试图弄清楚为什么我没有将jquerytagit
函数包装在一个document.ready
函数中时会发生以下错误。
大多数 jQuery 插件都不需要这样做,所以我想修改 tagit.js 文件,这样就不会发生这种情况。我找不到这个和其他不需要的 jQuery 插件之间的区别,document.ready
所以我想知道是否有人可以看看它?https://github.com/aehlke/tag-it/blob/master/js/tag-it.js
jquery - 如何使用 TagIt for jQuery 将标签映射到 ID 值?
我发现了一个可爱的小标记脚本,叫做 TagIt:
http://aehlke.github.io/tag-it/examples.html
这真的很简单,但我想知道如何让用户输入标签(来自我预定义的标签列表)并将它们映射到实际的 ID 号,而不是标签名称本身?
在提交表单时,我希望能够提交一个 ID 列表,如下所示:
这将映射到用户选择的标签,例如:
我的标签将来自一个标签表,每个标签都有它们的主键,我希望将这些主键存储在用户正在创建的帖子的列中。
基本上,我希望用户看到标签的好听的名称,但要让表单实际提交 ID 值。这可能吗?
这是我当前的 JS:
这是一个简单的单词标签列表,但我想这些需要是对象。就像是:
是否可以做这样的事情,然后使用 ID 作为值放置在表单字段中?
任何帮助表示赞赏。
谢谢,迈克尔。
jquery - jquery Tagit 插件无法正常工作
我正在尝试在我的 .net 应用程序中实现 jquery tag it plugin version v2.0。自动完成仅显示单个字符,如“C”,它在所有字符串中重复的类型数。这是我正在使用的代码。请建议如何解决?
javascript - 使用 tagit 删除 input-Field 中的 tagLabel
我使用https://github.com/aehlke/tag-it这个插件进行自动完成标记
用户只需从现有数组sampleTags中取出标签
在添加标签之前,我检查元素是否在数组中
但是输入不会被删除。
我怎样才能做到这一点?
jsFiddle:http: //jsfiddle.net/zqDXL/3/
tag-it - Tag-it 没有显示删除符号
我不知道为什么我没有得到“X”符号...
它应该是这样的:
我怎样才能找到问题?也许一个 CSS 文件阻塞了另一个 CSS 文件?
JavaScript 代码
jquery - tag-it inserting data from the clipboard
This is a question regarding tag-it jquery component. Comma field delimiter works fine when I enter the tags via keyboard, but when I paste tags with a comma(for example - one, two, three) from clipboard it looks like a one single tag with a commas inside the tag. Is it possible to configure tag-it in order to recognize different(separated) tags in the scenario described above ?
jquery - How to validate an email address?
I am using jQuery Tag-It. When I enter the tag value, it needs to be validated if it is a valid email address or not. How can I validate this tag using tag-it?
tag-it - Jquery tag-it 自动完成放置关闭
我正在尝试使用 aehlke/tag-it 及其自动完成选项。自动完成显示,但在一个奇怪的位置。
这是我的代码:
和 JS:
javascript - jquery tagit 不支持 IE9
我在以下位置找到的 jquery tag-it 插件有问题:http: //aehlke.github.io/tag-it/
我想使用 AJAX 获取我的数据,并且只传递 id,同时保留标签字段中的标签以显示。
这在除 IE9 之外的所有主要浏览器(chrome、FF、safari)中都能完美运行(没有尝试过更高版本,因为我需要支持 IE9)。
这是我的代码:
在所有其他浏览器中,该值在标签数组中作为键传递,但在 IE9 中,该值仅为 0。
我的代码中有明显的错误,还是更深层次的错误?
提前致谢。