码迷,mamicode.com
首页 > Web开发 > 详细

jquery中通过trim() length 判断数据是否有值

时间:2018-05-16 23:57:01      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:round   body   2.4   rip   script   title   判断   长度   tle   

在jquery中可以通过如下方式判断某一个字符串是否有值,结合if else if 语句进行业务逻辑的处理

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>ajax file</title>
    <script src="./js/jquery-1.12.4.min.js"></script>
    <script>
        $(function(){
            var data = $(".bloo").text()
            // trim()方法后应该是返回列表,可以判断长度
            if(data.trim().length>0){
                //业务逻辑
            }else if(data.trim().length=0){
                // 业务逻辑
            }else{
                // 业务逻辑
            }
        });
    </script>
</head>
<body>
    <div class="box" a="">
        嘿嘿
    </div>
    <input type="text" value="嘿嘿">
    <div class="bloo"></div>
</body>
</html>

 

jquery中通过trim() length 判断数据是否有值

标签:round   body   2.4   rip   script   title   判断   长度   tle   

原文地址:https://www.cnblogs.com/lowmanisbusy/p/9048751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!