gpt4 book ai didi

javascript - 属性未定义

转载 作者:行者123 更新时间:2023-12-01 01:57:10 25 4
gpt4 key购买 nike

以下代码不起作用,因为 attr 未定义:

$("#foo a[href]").each(function()
{
this.attr("href", "www.google.com");
});

但是这段代码确实:

$("#foo a[href]").each(function()
{
this.href = "www.google.com";
});

为什么?

最佳答案

您需要包装this ... $(this)

attr 是 jQuery 对象的方法,href 是元素节点的属性

关于javascript - 属性未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6845087/

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