大家好我有一个有趣的问题,我试图从表格列中获取输入文本值。当我开始读取循环时,我的文本值得到错误的整数值,如果我的文本值是150,我得到150.33但是如果我在循环之间放置警报然后我得到正确的值,那可能是什么原因为了这?任何想法?
//loop for table column read...
$('#IGrid tr').each(function () {
var prev_discount = isNumber($('td input[name="Discount"]', this).val());
alert(prev_discount);
});