jquery 排序 li

发布于 2024-10-09 14:30:40 字数 438 浏览 3 评论 0原文

我有代码

<ul id="list">
 <li>test</li>
 <li class="header">test</li>
 <li>test</li>
</ul>

需要执行此代码

(使用 jquery)

var items = $("#list li");

$.each(items, function (key, value) {
 if ($(value).hasClass(".header")) { 
    ... Do Something ...
    }
}

此代码不起作用,因为 value == 'test'

对不起,我的英语很糟糕

I have code

<ul id="list">
 <li>test</li>
 <li class="header">test</li>
 <li>test</li>
</ul>

I need execute this code

(use jquery)

var items = $("#list li");

$.each(items, function (key, value) {
 if ($(value).hasClass(".header")) { 
    ... Do Something ...
    }
}

this code doesn't work, because value == 'test'

Excuse, my English is awful

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

思慕 2024-10-16 14:30:40

我不知道 value == 'test' 是什么意思。你的问题里没有这样的内容。

您的 $.each() 缺少结束符 )

另外,您的 .hasClass 不应在类名称中包含 .

所以这个:

.hasClass(".header")

应该是:

.hasClass("header")

尽管如此,如果您只想针对具有类的项目运行代码,只需执行 .filter().each()< 之前/代码>

items.filter('.header').each( function (key, value) {
    ... Do Something ...
});

如果该集合没有其他用途,那么您可以像这样修改选择器:

$('#list li.header').each( function (key, value) {
    ... Do Something ...
});

但前提是您没有其他需要缓存所有

  • 元素。
  • I don't know what you mean by value == 'test'. There's nothing like that in your question.

    Your $.each() is missing its closing ).

    Also, your .hasClass should not include the . in the class name.

    So this:

    .hasClass(".header")
    

    should be:

    .hasClass("header")
    

    Although, if you're interested in running code against only the items that have a class, just do a .filter() before .each().

    items.filter('.header').each( function (key, value) {
        ... Do Something ...
    });
    

    If you have no other use for the collection, then you could modify the selector like this:

    $('#list li.header').each( function (key, value) {
        ... Do Something ...
    });
    

    But only if you have no other need to cache all of the <li> elements.

    如果没有 2024-10-16 14:30:40

    您正在使用一个 .在你的 hasClass 函数中传递类名。将其更改为:

    var items = $("#list li");  
        $.each(items, function (key, value){  
            if ($(value).hasClass("header")){      
                alert('Hi');
                //Do Something
            } 
        });
    

    You are using a . in your hasClass functon while passing class name. Change it to:

    var items = $("#list li");  
        $.each(items, function (key, value){  
            if ($(value).hasClass("header")){      
                alert('Hi');
                //Do Something
            } 
        });
    
    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文