我正在尝试为类hand
添加一个数字。假设每个人都有一个数字,你越往下一页就会增加一个。我以为我可以使用FOR
循环执行此操作,但我不知道如何!
这是我到目前为止的代码,但我不知道在FOR
循环之间放置什么:
$(".hand").each(function(){
var i = 0;
for (i=0;i<=20;i++){
}
});
任何想法?
修改
HTML示例:
<div class="hand effect"><br>
<div class="outer">
<a href="" class="title">Text</a>
<span class="inner">
Text More Text.
</span>
</div>
</div>
答案 0 :(得分:3)
$.each为您提供索引。
$(".hand").each(function(index,element){
$(this).append('<span class="index">' + (++index) + '</span>'); // example of appending a span tag to them
});
然后,您可以使用类index