我正在構建一個函數來驗證表單,我可以使用它來爲即將到來的項目。 第二,如果stastation不工作,我不明白爲什麼。jQuery的每個功能,如果stactory
$('.submit').click(function() {
var hasError = false,
emailReg = /^([\w-\.][email protected]([\w-]+\.)+[\w-]{2,4})?$/,
form = $('form'),
radio_check = $('.tick .test'),
input = $('input:not(.submit)'),
emailaddressVal = $("#email").val(),
email = $('#email');
$('form input:not(.submit)').each(function(){
if ($(this).val() == '') {
$(this).css('background-color', 'red');
if(!email.val() == '') {
email.css('background-color', '#faa');
}
}
});
});
定義「不工作」? – 2013-03-04 16:32:56
使用triple =運算符,除非要類型強制。即=== – 2013-03-04 16:33:09
這不是應用以下內容:email.css('background-color','#faa'); – Alex 2013-03-04 16:33:28