本文共 227 字,大约阅读时间需要 1 分钟。
checkbox获取多选框,创建本地存储
//本地存储对象和数组都需要转JSON字符串JSON.stringifyvar disease = [];$('input[name="operation"]:checked').each(function(){ disease.push($(this).val()); });localStorage.setItem('oper',JSON.stringify(disease));
转载地址:http://ngtpl.baihongyu.com/