我有这个javascript函数:
for (var i = 0; i < c.length; i++) {
if (c[i].type == 'checkbox' && c[i].checked==true){
booked_seats[count]=c[i].id;
c[i].parentNode.style.backgroundColor = "#F00";
count++;
}
}
单击提交按钮时调用它。我希望将 c[] 数组保留在会话中,因此当刷新页面时,更改仍然存在(表格特定单元格和复选框中的颜色更改)。我究竟怎样才能做到这一点?