0

This is only finding the first link. Why is it not looping through all of the links?

http://jsfiddle.net/infatti/7r4fV/

var alertHref = $('#myLinks').find('a').attr('href');

$('#myDivs').find(alertHref).css('background-color', 'yellow');

<span id="myLinks">
  <a href="#div1">link 1</a>
  <a href="#div2">link 2</a>
</span>
<hr />
<div id="myDivs">
  <div id="div1">div 1</div>
  <div id="div2">div 2</div>
</div>
4

2 回答 2

2

find('a')返回所有a元素的列表,但.attr('href')仅返回第一个链接的 href。

您需要遍历a元素:

http://jsfiddle.net/Gj2R9/

$('#myLinks a').each(function() {
    $($(this).attr('href')).css('background-color', 'yellow');
});
于 2013-08-05T20:17:47.330 回答
1

用于jQuery.each循环播放多个。

使用你的小提琴

var $hrefs  = $('#myLinks').find('a[href]');
var $myDivs = $('#myDivs');

$hrefs.each(function(index,link){
   $(link.hash,$myDivs).css('background-color','yellow');
});

您还可以使用地图小提琴):

var hrefs  = $('#myLinks').find('a[href]')
                          .map(function(){ return this.hash; })
                          .get();

$('#myDivs').find(hrefs.join(',')).css('background-color','yellow');
于 2013-08-05T20:16:02.030 回答