gpt4 book ai didi

javascript - 检查元素类名

转载 作者:行者123 更新时间:2023-11-28 04:03:34 25 4
gpt4 key购买 nike

这应该是一个速成!

我需要通过点击它们的类名来区分两个元素.. 例如

html:

<p class='p1'>paragraph element</p>
<p class='p2'>paragraph element</p>

j查询:

$('p').on('click', function() {
if ($(this).attr('class', 'p1') {
callThisFunction();
} else {
doNothing();
}
});

最佳答案

if ($(this).is(".p1")) {

if ($(this).hasClass("p1")) {

$(this).attr("class", "p1") 实际上设置类属性。检查 $(this).attr("class") 也不好,因为它可能有多个类。

关于javascript - 检查元素类名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17432327/

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