我必須遍歷這些eachLocation
Div其中幾個持有各種地方和他們的地址。選擇以下範圍jquery
$('.eachLocation').each(function(index) {
var address=$(this).siblings().find('span.LocationAddress').text();
});
我沒有得到任何值的地址?難道我做錯了什麼?
<div class="eachLocation" >
<div class="LocationCounter">1.</div>
<div class="LocationInfo">
<span class="LocationName">Kay Kay Center</span><br/>
<span class="LocationAddress">
1019 fairfax road, Bellevue, NE 68005
</span><br/>
</div>
</div>
+1 - 如果其他人丟失它,Senad使用上下文參數進行過濾。 '$('selector',context)'。知道這是一件非常有用的事情! – mrtsherman 2012-02-23 20:21:40
我可以使用text()而不是html()嗎?有什麼區別嗎? – 2012-02-23 20:39:48
這是你可以尋找答案的地方。 http://api.jquery.com/text/基本上text()將只返回所有子元素組合的文本,而html()將返回html – 2012-02-23 20:42:31