gpt4 book ai didi

javascript - 使用 jQuery 从另一个页面获取 href

转载 作者:行者123 更新时间:2023-11-30 13:05:01 25 4
gpt4 key购买 nike

我正在尝试创建一个函数,该函数从另一个页面获取链接列表并将它们推送到一个数组中,但我不知道在成功函数之后要做什么。

$('#button').click(function() {
var array = [];
$.get('links.html',function(data) {
//here's where I'm stuck
$('#photo a').each(function(){
array.push($(this).attr('href'));
});
});

链接.html

<html>
<body>
<div id="photo">
<a href="link1.html">...
<a href="link2.html">...


谢谢!

最佳答案

试试这个。

$('#button').click(function() {
var array = [];
$.get('links.html',function(data) {
//here's where I'm stuck
$(data).find('#photo a').each(function(){
array.push($(this).attr('href'));
});
});
});

关于javascript - 使用 jQuery 从另一个页面获取 href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16006061/

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