2015-09-28 91 views
-1

我需要一個漸進計算與jQuery。我有一個表,一個TD是這樣的:漸進計算jquery

<td class="number"></td> 

我jQuery的官方網站上看到這個代碼

$("li").each(function(index) { 
    console.log(index + ": " + $(this).text()); 
}); 

我試過這樣

$(".number").each(function(index) { 
    var num = (index)+1; 
}); 
$(".number").text(num) 

一個代碼,但沒有做什麼

+0

放這個'$(this).text(num);'在你的函數內部,而不是外部 –

回答

0
$(".number").each(function(index) { 
    $(this).text(index + 1); 
}); 
0

你的問題是不完全是顯而易見的,但如果你想要把它裏面的每個TD的數量,使用此代碼:

$('.number').each(function(index){ 
    $(this).html(index + 1); 
}); 

$(this)循環點在環路目前TD裏面......