如何检查表单中的所有输入字段以查看它们是否为空?

时间:2016-05-21 00:11:50

标签: javascript html css

如何检查表单中的所有输入字段(复选框,文本和广播)以查看它们是否为空。然后突出显示带有红色边框的空白。感谢。

1 个答案:

答案 0 :(得分:0)

如果你使用的是jQuery,你可以这样做:

(function($) {

// After check for form submission
$('form :input').each(function(i) {
    if( $(this).val() == '' ) {
        // Just remove the closest() method if you want to give the 
        // actual input a border
        $(this).closest('.parent-div').css({ 'border': '1px solid #c20000' });
    }
});

})(jQuery);