2017年11月17日
checkbox擷取多選框,建立本地存儲
//本地存儲對象和數組都需要轉JSON字元串JSON.stringify
var disease = [];
$('input[name="operation"]:checked').each(function(){
disease.push($(this).val());
});
localStorage.setItem('oper',JSON.stringify(disease));
checkbox擷取多選框,建立本地存儲
//本地存儲對象和數組都需要轉JSON字元串JSON.stringify
var disease = [];
$('input[name="operation"]:checked').each(function(){
disease.push($(this).val());
});
localStorage.setItem('oper',JSON.stringify(disease));