我有這段代碼,它正在讀取文本框中的值,我想在嘗試parseInt()之前檢查''是否安全,但顯然不是。不能調用未定義的方法'toLowerCase'
我收到錯誤:
Uncaught TypeError: Cannot call method 'toLowerCase' of undefined
有了這個代碼:
var total = 0;
$.each('.reg-input', function() {
if ($(this).val() == '') {
}
else {
total += parseInt($(this).val()); //this line throwing error
}
});
if (total == 0) {
$('.RegisterContainer').hide();
}
嘗試固定支架'總+ = parseInt函數($(本).VAL());' –
它不應該是'總+ = parseInt函數(this.val( ));'? – Shmiddty
這是粘貼它的問題,我在代碼中的右括號 –