博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
拼接数组
阅读量:5010 次
发布时间:2019-06-12

本文共 933 字,大约阅读时间需要 3 分钟。

var dataObj = $('input[name="checkAll"]:checked').map(function(el) {    return {                productId: $(this).parents('li').attr('name'), // id        productName: $(this).parents('li').find('span').html(), //商品名称        productImage: $(this).parents('li').find('img').attr('src'), //商品图片地址1        productPrice: $(this).parents('li').find('span').attr('name'), //商品价格        productUrl: $(this).parents('li').find('span').attr('id') //第三方商品地址1    }}).get()consoloe.log(dataObj)//数组

原始:

$('input[name="checkAll"]:checked').each(function() { //遍历每一个input的复选框,其中选中的执行函数     listLi.name = $(this).parents('li').find('span').html();                           listLi.prce = $(this).parents('li').find('p').html();                           listLi.img = $(this).parents('li').find('img').attr('src');    listLi.id = $(this).parents('li').attr('id');        //console.log(listLi.id)})

 

转载于:https://www.cnblogs.com/rockyan/p/9484953.html

你可能感兴趣的文章
Java进阶知识点6:并发容器背后的设计理念 - 锁分段、写时复制和弱一致性
查看>>
Makefile ===> Makefile 快速学习
查看>>
face detection[HR]
查看>>
java性能调优工具
查看>>
C# 其他的Url 文件的路径转化为二进制流
查看>>
cmake使用
查看>>
ios7上隐藏status bar
查看>>
构造方法和全局变量的关系
查看>>
python3基础05(有关日期的使用1)
查看>>
ArrayList的使用方法
查看>>
面向对象高级
查看>>
Bitwise And Queries
查看>>
打印Ibatis最终的SQL语句
查看>>
HBase之八--(3):Hbase 布隆过滤器BloomFilter介绍
查看>>
oracle连接问题ORA-00604,ORA-12705
查看>>
NOI 2019 退役记
查看>>
java的几个日志框架log4j、logback、common-logging
查看>>
Java从零开始学十三(封装)
查看>>
Python2和Python3中的rang()不同之点
查看>>
MySQL的外键,修改表,基本数据类型,表级别操作,其他(条件,通配符,分页,排序,分组,联合,连表操作)...
查看>>