jQuery:隐藏没有ID的div

发布于 2024-12-07 09:32:11 字数 227 浏览 0 评论 0原文

如何隐藏没有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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

与往事干杯 2024-12-14 09:32:11

试试这个:

$("div.sticky:not([id])").hide();

主要思想是将 :not([id]) 选择器与元素选择器一起使用。

小提琴:http://jsfiddle.net/57uQ8/

Try this:

$("div.sticky:not([id])").hide();

The main idea is to use :not([id]) selector with element selector.

fiddle: http://jsfiddle.net/57uQ8/

番薯 2024-12-14 09:32:11

http://sandbox.phpcode.eu/g/d2956/2

<script>
$(function(){
    $("div.sticky").each(function(b){
        if (!$(this).attr('id')){
            $(this).hide(); 
        }
    });
});
</script>

可能会做到这一点,假设您只想显示没有 IDS 的 div 和具有类粘性的 div

http://sandbox.phpcode.eu/g/d2956/2

<script>
$(function(){
    $("div.sticky").each(function(b){
        if (!$(this).attr('id')){
            $(this).hide(); 
        }
    });
});
</script>

will probably do it, assuming you want to show ONLY divs with no IDS and divs with class sticky

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文