显示 jquery 元素集合中的一些元素
¡Holla 专业人士,
我有这段代码,它部分工作。根据某些条件,我想让某些列表元素可见。目前只有警报有效。我不确定是什么错误。
¡Holla pros,
I have this piece of code, which is partially working. Based on some conditions I want to make visible some of the list elements. Currently only the alert works. I`m not sure what is the error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的
attr
错误;它的目的是更改某些 html 元素的属性。我只需将attr
更改为css
即可实现此功能,这是更新 css 的正确方法; 这里有工作小提琴的链接。您还可以考虑将类与toggle
结合使用,这可以使您的代码更容易管理。You're using
attr
wrong; it's meant to change an attribute of some html element. I was able to get this working by just changingattr
tocss
, which is the correct way to update css; link to working fiddle here. You could also consider using classes combined withtoggle
, which can make your code easier to manage.