jQuery:隐藏没有ID的div
如何隐藏没有ID的div?我有一个应用程序,它创建了一些便签。他们中有的没有身份证,有的有。如何隐藏没有身份证的人?
位置并不总是相同。
这就是我在 HTML 中得到的内容,我想隐藏最后一个。
我可以隐藏没有ID的吗?请注意,其余具有 ID 的数字是随机生成的数字。
多谢。
How can I hide a div with no ID? I have an application which creates few stickies. Some of them have no ID and some of the do have. How can I hide the ones with no ID?
The position is not always the same.
This is what I get in the HTML where I want to hide the last one.
Is it possible I can hide the one with no ID? Note that the rest which have ID's, is a number generated randomly.
Thanks alot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
主要思想是将
:not([id])
选择器与元素选择器一起使用。小提琴:http://jsfiddle.net/57uQ8/
Try this:
The main idea is to use
:not([id])
selector with element selector.fiddle: http://jsfiddle.net/57uQ8/
http://sandbox.phpcode.eu/g/d2956/2
可能会做到这一点,假设您只想显示没有 IDS 的 div 和具有类粘性的 div
http://sandbox.phpcode.eu/g/d2956/2
will probably do it, assuming you want to show ONLY divs with no IDS and divs with class sticky