gpt4 book ai didi

javascript - 使用 jQuery 返回匹配元素的属性 ar 数组

转载 作者:数据小太阳 更新时间:2023-10-29 04:24:12 25 4
gpt4 key购买 nike

在 jQuery 中,选择元素作为数组很容易。

$("a"); // return as elements array of anchors

但是是否可以选择匹配元素的属性作为数组?

目前我需要做一些类似...

links = [ ];

$("a").each(function() {

href = $(this).attr("href");
links.push(href);

});

有没有更好的方法用所有匹配 anchor 的 href 填充变量 links

最佳答案

像这样使用 $.map:

var links = $('a').map(function() { return this.href }).get()

关于javascript - 使用 jQuery 返回匹配元素的属性 ar 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3355155/

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