我有这个剧本
$( table#preview td.price ).each(function(){
var price = parseInt($(this).html());
var total;
if(price == ){
price = 0;
}
total += price;
alert(total);
});
它所做的就是得到一列 持有股价 然后据推测加起来所有。
然而,我从这个代码得到的只是NAN, 我不明白代码有什么问题。
请注意脚本 < enger > if (价格 =) < / strong > 。 我这样做是因为表格中最初没有内容。
编辑: 这里 html
<table>
<tr>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>pen</td>
<td class="price>6</td>
<td>paper</td>
<td class="price>8</td>
</tr>
</table>