gpt4 book ai didi

javascript - 如何获取元素的类属性?

转载 作者:行者123 更新时间:2023-11-30 07:41:34 25 4
gpt4 key购买 nike

我想获取元素的类属性的值。

<a href="http://stackoverflow.com/" id="myId" class="myClassName">Click Me</a>

this.idthis.hrefthis.text 正在运行。

我的问题是为什么 this.class 不工作?

注意:

我不想使用:

console.log($this.attr('class'));console.log($("a").prop("class"));

因为它很慢。

$(function(){
$("a").on("click",function(){
console.log(this.id); // myId
console.log(this.href); // http://stackoverflow.com/
console.log(this.text); // Click Me
console.log($("a").prop("class")); // myClassName
});
});

最佳答案

因为它应该是this.className

引用: https://developer.mozilla.org/en-US/docs/DOM/element.className

关于javascript - 如何获取元素的类属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15970931/

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