使用 jQuery ,
我有一个数组结果
[<a href=""><img src="image1"></a>,<a href=""><img src="image2"></a>]
如果我尝试做每一个,我只会得到数组中的第一个,
我怎么能分开这个所以我可以做
$.each(my_array, function (index, value) {
this.parent().attr.('href',this.src);// assign image as href to parent
});
这是不好的尝试
请注意,上面的数组是由 jquery 的 imagesLoaded 插件返回给我的,我无法直接选择父级,因为它不在结果中,ZI 必须通过 element.parent() 任何帮助表示赞赏。谢谢!