gpt4 book ai didi

javascript - 未定义的href! (DOM API)

转载 作者:行者123 更新时间:2023-11-28 21:26:46 24 4
gpt4 key购买 nike

在 Google 的搜索结果页面上,

document.getElementsByClassName("l")[0] 
//"l" is the class for the URL's of the results.

返回未定义。

但是,

alert(document.getElementsByClassName("l")[0]);

将显示第一个结果的实际 URL。

我只需要访问结果的 URL!

      //Adding
.href //to the end does not help

您可以通过转到浏览器控制台并输入来体验这一点

document.getElementsByClassName("l")[0]

最佳答案

如果您只需要 href 属性:

document.getElementsByClassName('l')[0].getAttribute('href');

这在 Firefox/Firebug、Safari 和 Chrome 中运行良好。

关于javascript - 未定义的href! (DOM API),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4840403/

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