如何将具有空值的输入存储在变量中,然后使用 jQuery 将 CSS 属性分配给该变量?
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;
}