gpt4 book ai didi

javascript - 如何通过 jQuery 选择类属性

转载 作者:行者123 更新时间:2023-12-02 07:09:46 25 4
gpt4 key购买 nike

这是有问题的 HTML:

<a href="#" class="a01">xxx a01</a>
<a href="#" class="b02">xxx a021</a>
<a href="#" class="c03">xxx aa021</a>
<a href="#" class="d04">xxx aaa2021</a>

点击链接时,jQuery:

$("a").click(function(){
alert($(this).html()); // we get xxx a01 , xxx a021 and so on..
})

如何获取类值,如a01、b02、c03等?

谢谢。

最佳答案

使用 this.className,它比 $(this).attr("class") 更快且冗余更少。

$("a").click(function(){
alert(this.className);
});


大多数属性都可以作为元素的属性直接访问,因此通常不需要将 jQuery 包装在 this 周围并使用 attr()prop()

http://whattheheadsaid.com/2010/10/utilizing-the-awesome-power-of-jquery-to-access-properties-of-an-element 阅读更多相关信息(插头)。

关于javascript - 如何通过 jQuery 选择类属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7213635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com