-2
我怎樣才能將一個空值的輸入存儲在一個變量中,然後用jQuery爲該變量分配一個CSS屬性?jQuery商店空輸入變量
if($('input[type=text]').val() === ''){
var that = //store here input with empty value
that.each(function(){
that.css('border', '1px solid red');
});
return false;
}
else{
return true;
}
啊好的,以及我需要他們全部被檢查,如果他們是空的... – Alex
我已經試過這個,它工作完美,我想我需要修改過濾器的功能..謝謝 – Alex
osam回答@Arun P Johny –