jq判断5个input如果全部为空 , 就alert

<div id="form">
    <input type="text" value="">
    <input type="text" value="">
    <input type="text" value="">
    <input type="text" value="">
    <input type="text" value="">
</div>

<script>
    var inputs = $("#form").children("input"); // jq
    var inputs = document.getElementById("form").getElementsByTagName("input"); // 原生

    // 判断是否全部为空值
    var isEmpty = [].reduce.call(inputs, function (a, b) {
        return a && !b.value;
    }, true);

    // 如果有空值则alert
    isEmpty && alert();
</script>
上一篇:基于GPU的Pytorch——CNN实现MNIST数据识别


下一篇:2021-01-17