0

我有几个类名的输入字段required

我在下面有一个代码来检查我的所有<input>字段是否都有值,如果不为空或 null,它将显示/取消隐藏特定的div.

但它似乎对我不起作用。

此外,默认情况下,#print通过 CSS 显示为无。

<!-- index.php -->

<input type="text" id="getID" class="required form-control" placeholder="id">
<input type="text" id="getName" class="required form-control" placeholder="name">

<!-- script.js -->

$(document).ready(function() { 
  $('input.required').each(function() { 
    if($(this).val() != "") {
        $("#print").show();
    }
    else {
        $("#print").hide();
    }
  });
});
4

3 回答 3

2

我建议:

$('#print').toggle(!($('input.required').length == $('input.required').filter(function () {
        return this.value;
    }).length));

简化的 JS Fiddle 演示

显然,这应该在 上运行submit,假设您只想#print在提交之前将元素显示为验证。

参考:

于 2013-09-30T15:51:52.273 回答
1

正如我在上面的评论中所说,您正在检查页面加载时的值,然后用户才有机会输入任何内容。如果您的页面上有一个按钮,请将事件绑定到将在正确时间触发该功能的事件。

有点像这个jFiddle

索引.php

<input type="text" id="getID" class="required form-control" placeholder="id">
<input type="text" id="getName" class="required form-control" placeholder="name">
<div id="button">Submit</div>
<div id="print">You're missing something D:!</div>

脚本.js

$('#button').on('click', function() { 
    $('#print').hide();
    var error=false;
    $('input.required').each(function() { 
        if($(this).val() == "") {
            error=true;
        }
    });
    if(error) {
        $('#print').show();   
    }
});
于 2013-09-30T15:53:13.403 回答
0

尝试

$(document).ready(function () {
    //the default state
    var valid = true;
    $('input.required').each(function () {
        //if the value of the current input is blank then the set is invalid and we can stop the iteration now
        if ($.trim(this.value) == '') {
            valid = false;
            return false;
        }
    });
    //set the visibility of the element based on the value of valid state
    $("#print").toggle(!valid);
});
于 2013-09-30T15:48:26.350 回答