如何使用jquery在数组内部推送数组?

时间:2018-01-24 17:47:11

标签: javascript jquery arrays

我需要在数组中注入多个数据,以使用另一个数组,但是当我使用仅显示[对象,对象]的警报测试此数据时,不显示数据。

如何在数组中添加或推送此数据?

var promos = [];
listSlider.each(function () {
    var myID=this.id;
    var myName = $(this).find( "div.info h3" ).text();
    var creative = $(this).find( "h1 span" ).text();
    var position=myID.split("-")[1];

    promos.push({
        'id'        : myID,
        'name'      : myName,
        'creative'  : creative,
        'position'  : position
    });

}); 
alert(promos[2]);

0 个答案:

没有答案