jQuery:如何验证某个元素是否为空

【要求】:使用jQuery 如何验证某个元素是否为空

  ♪ 答:

<body>
    <div id="div1">aa</div>
    <input type="input" name="input1" value="bb">
    
    <div id="parent">
    <div></div>
    </div>
    
    <p class="pp">pp</p>
</body>

<script>
    /**
     * 判断是否有内容
     */
    // 方法1:
    var isDivEmpty = $('#div1').text() ? false : true;
    
    // 方法2:
    var isInputEmpty = $('input[name=input1]').val() ? false : true;
    
    /**
     * 判断是否有子元素
     */
    // 方法3:
    console.log( $('#parent').is(':empty') );
    console.log( $('#pp').is(':empty') );
</script>

posted on   Ruth92  阅读(6990)  评论(0编辑  收藏  举报

导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

统计

点击右上角即可分享
微信分享提示