jquery里用each遍历的值存到数组和字符串

Posted 一叶知秋 https://www.cssge.com

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery里用each遍历的值存到数组和字符串相关的知识,希望对你有一定的参考价值。

 $("img").each(function(){
var a = $(this).attr("src");
});
//遍历后存放到数组中。。要用的时候再根据需要取.
var arr = new Array();
$("img").each(function(index){
    arr.push($(this).attr("src"));
})
 
//调用..
for(var i in arr){
    console.log(arr[i]);
}

  

 $(".shopcar").each(function () {
                goods_id += $(this).children().find(‘dt‘).attr(‘value‘) + ",";
                goods_number += $(this).children().find(".result").val() + ",";
                return goods_id;
                return goods_number;
            });

        //去掉最后一个逗号
        if (goods_id.length > 0) {
            goods_id = goods_id.substr(0,goods_id.length - 1);
        }
        if (goods_id.length > 0) {
            goods_number = goods_number.substr(0,goods_number.length - 1);
        }

  

以上是关于jquery里用each遍历的值存到数组和字符串的主要内容,如果未能解决你的问题,请参考以下文章

jquery中$each()

$.each和$().each

$.each()与$(selector).each()

$.each()和$(selector).each()

求助~C语言怎麼把下面两句的值存到excel的指定单元格里?

jquery each用法