jq点击按钮添加元素到数组
Posted minghan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq点击按钮添加元素到数组相关的知识,希望对你有一定的参考价值。
var array = [];//定义空数组 //提交按钮点击事件 $(‘#submitBtn‘).click(function() { array.push(obj); //添加到数组中 localStorage.setItem(‘hisplate‘, JSON.stringify(array));//存 plates = JSON.parse(localStorage.getItem(‘hisplate‘))//取 console.log(plates) })
以上是关于jq点击按钮添加元素到数组的主要内容,如果未能解决你的问题,请参考以下文章
jq如何判断元素是不是存在? 如图 我点击div1里面的img后会添加到div2中