美文网首页
for循环添加元素比较效率的方式

for循环添加元素比较效率的方式

作者: 战神飘雪 | 来源:发表于2018-04-24 14:33 被阅读8次
    for (var i in retd.str) {               
                    trs.push(
                    '<div class="merchandiseDisplay" onclick="go_win(\'commodityDetailsPage.html\',{\'pid\':\'' + retd.str[i].id + '\',\'shopid\':'+ pageParam.shopid +'});" tapmode ">'+
                        '<img class="artic_img" src="'+retd.str[i].image+'" alt=""  />' +
                        '<p class="spname">'+retd.str[i].name+'</p>'+
                        '<p>'+
                        '<span>'+ retd.str[i].sellPrice+'幸福币' +'</span>'+
                        '<button class="goshop">'+'去抢购' +'</button>'+
                        '</p></div>'
                            );
                    }
                    $(".merchan").append(trs.join(""));
    

    相关文章

      网友评论

          本文标题:for循环添加元素比较效率的方式

          本文链接:https://www.haomeiwen.com/subject/wrljlftx.html