Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为标签使用Textext插件。我试图实现的是防止在文本区域中键入的项目(标签)的多个重复。
正如您在上面的图片中看到的那样,标签“C”被输入了两次。它希望防止用户输入重复项。我该怎么做呢?
我遇到了过滤器插件,但它的功能与我想要的有点不同。
我相信有一些好方法可以实现这一目标。请帮忙!
使用以下内容获取内部文本:
var txt = document.getElementById('textarea'); var insideText = $(txt).parent().children('div').text();
文本将采用串联形式。因此,当用户删除标签或创建新标签时,您需要小心。
要测试上述代码,请在浏览器的开发人员工具的控制台选项卡中运行它。