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

js里的数组push用法及append()

时间:2015-12-11 23:46:29      阅读:1842      评论:0      收藏:0      [点我收藏+]

标签:

result.result[0].name

var arr = new Array();
$.each(result.result, function(i, item) {
            arr.push("<li onclick=\"tiaoZhuan(‘"+item.id+"‘)\">");
            arr.push("<div class=\"shopList-ima\">");
            arr.push("<img src=\"${ctx }/static/wx/images/shopima.png\" alt=\"门店图片\"/>");
            arr.push("</div> <div class=\"shopList-txt\">");
            arr.push("<h3>"+item.customername+"</h3>");
            arr.push("<p>评价<img src=\"${ctx }/static/wx/images/star.png\" alt=\"门店评价\"/></p>");
            arr.push("<p>"+item.address+"</p>");
            arr.push("<p>电话:"+item.tel+"</p>");
            arr.push("</div></li>");
            });
            $("#shopid").append(arr.join(""));    
        },

js里的数组push用法及append()

标签:

原文地址:http://www.cnblogs.com/baijin05/p/5040370.html

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