ul中的li动态获取后台数据$.each()的使用方式

时间:2021-08-28 20:35:40
    my.leftCarRealTimeInformation = function(){
        $.ajax({
            url: '----------后台给的数据地址------------',     
            type: 'post',                 //获取数据方式:post/get          
            async: false,                  //加载方式默认异步,true为同步
            dataType:'json',            //数据格式
            success:function(data){   
                var carNewsList = "";
                $.each(data,function(i,item){   //遍历ul中的li
                    carNewsList += "<li  style='font-size:14px;color:#5d5d5d;'>"+item.columnName+"</li>";
                });
               $('#leftCarInformationList').html(carNewsList);        //数据在<ul id="leftCarInformationList"></ul>里面显示
            },
            error: function(obj){
                alert("return error:"+obj);
            },    
        });
    };