我目前有以下html:
为编辑道歉,当我写这篇文章时,我并没有注意。
<div class ="left">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
我使用JQuery .each命令使用$('div').each
迭代每个div。虽然我只想迭代div中的div,类名为'left'。
我尝试使用$('.left > div').each
,但它没有用。
任何帮助表示感谢。
答案 0 :(得分:18)
$.each( $('.left'), function(i, left) {
$('div', left).each(function() {
});
})
答案 1 :(得分:7)
答案 2 :(得分:3)
语法为$(".left > div").each(function(){});
,而不是.each(".left > div")
。
更新:想要使用$(".left").children().each()
答案 3 :(得分:3)
$(".left").children().each(function(i, elm) {
alert($(this).html())
});