Posted in Javascript onJune 01, 2017
数据存储的常用函数
存入数组不重复值
function pushtoArray(myarr,mydata){ if(myarr.length==0){ myarr.push(mydata); }else{ var oktopush=true; for(var ele in myarr){ if(myarr[ele]==mydata){ oktopush=false; } } if(oktopush){ myarr.push(mydata); } } return myarr; }
删除数组中的元素
Array.prototype.remove = function(val) { var index = this.indexOf(val); if (index > -1) { this.splice(index, 1); } };
存入对象到localStorage
function setObjectStorage(itemname,myobj){ localStorage.setItem(itemname, JSON.stringify(myobj)); } function getObjectStorage(itemname){ return JSON.parse(localStorage.getItem(itemname)); }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
javascript 数据存储的常用函数总结
- Author -
lilugirl声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@