我有一个表单,如果用户提交有错误的表单(以防页面刷新),我需要在该表单上存储所有单选按钮的状态。
我想实现与此非常相似的东西:
$(function(){
$('.example input[type="radio"]:checked').each(function(){
$(this).attr("checked",true);
});
任何帮助将不胜感激!
我有一个表单,如果用户提交有错误的表单(以防页面刷新),我需要在该表单上存储所有单选按钮的状态。
我想实现与此非常相似的东西:
$(function(){
$('.example input[type="radio"]:checked').each(function(){
$(this).attr("checked",true);
});
任何帮助将不胜感激!
您可以将其状态存储在本地存储中,并在每次页面加载后恢复它。
存储值的小例子:
$('#myCheckbox').click(function () {
localStorage['my.checkbox'] = this.checked;
});
恢复它:
$('#myCheckbox').prop('checked', localStorage['my.checkbox'] == 'true');
你只需要更新代码
$(function(){
$('.example input[type="radio"]').each(function(){
$(this).attr("checked",$(this).checked());
});
当用户为单选按钮选择时,它将保存单选按钮的属性。
也许您将信息存储在会话令牌或会话 cookie 中。如果您使用 html5 组件,您可能会尝试使用 html 本地存储。