从带有复选框的 div 获取标签,结果是包含所有标签的 DIV...如果没有,就不显示它们?
我想知道如何做到这一点: http://jsfiddle.net/asjbak/69WL3/ 使用复选框而不是文本字段。 我尝试使用推送并将其与以下示例结合起来: http://jsfiddle.net/3qwty/8/< /a> 上面的示例显示了每个包含 1 个标签的 div。
在带有文本字段的示例中,它仅显示带有所有标签的 div。
有什么方法可以通过单击复选框来推动文本字段,或者甚至可以在没有文本框的情况下吗?
希望你们中的一位能够给出答案。
I like to find out how I can do this: http://jsfiddle.net/asjbak/69WL3/
with checkboxes instead of the textfield.
I tried it with push and to combine it with this example: http://jsfiddle.net/3qwty/8/
The above example shows every div that has 1 of the tags inside.
In the example with the textfield it shows just the div's with all the tags.
Is there some way I can push the textfield by clicking on the checkboxes or is it even possible without a textbox??
Hope one of you folks have an answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定你在要求什么,但看起来你正在尝试合并两个小提琴的功能,并且我已经完成了你在第一句话中要求的内容。
您可以尝试使用 contains 来查找元素文本中是否存在字符串。我可能会在类中做你的标签,这样你就可以做“hasClass”,而不是在开头显示所有内容并隐藏在字符串中未找到的基础上,因此添加更多逻辑。
看看:
http://jsfiddle.net/YSL9T/13/
I'm not too sure what you are asking for but it looks like you are trying to merge the functionality of the 2 fiddles, and I've done what you've asked for in the first sentence.
You can try a contains to find the presence of a string in element text. Id probably do your tags in the class so you can do 'hasClass' instead, rather than showing everything at the beginning and hiding on a not found in string basis, therefore adding more logic.
Check it out:
http://jsfiddle.net/YSL9T/13/