我有这个脚本
$('table#preview td.price').each(function(){
var price = parseInt($(this).html());
var total;
if(price == ''){
price = 0;
}
total += price;
alert(total);
});
它所做的是获取具有类价格的列,然后据说将其全部加起来。
但是,我从这段代码中得到的只是 NaN。我不明白代码有什么问题。
请注意脚本if(price == '')。我这样做是因为最初表格中没有内容。
编辑:这里是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>