jq点击按钮添加元素到数组
2020-12-22 02:26
标签:添加元素 UNC 定义 push his cli als array btn jq点击按钮添加元素到数组 标签:添加元素 UNC 定义 push his cli als array btn 原文地址:https://www.cnblogs.com/minghan/p/13217333.html var array = [];//定义空数组
//提交按钮点击事件
$(‘#submitBtn‘).click(function() {
array.push(obj); //添加到数组中
localStorage.setItem(‘hisplate‘, JSON.stringify(array));//存
plates = JSON.parse(localStorage.getItem(‘hisplate‘))//取
console.log(plates)
})