我有一些脚本,我想在更改单选按钮时更新div。此外,我将所选无线电的值存储在sessionStorage中,以便在再次访问该页面时保持选择相应的单选按钮。
我的问题是,如果我使用sessionStorage脚本和更新脚本,则更新脚本不再起作用,只保留存储在会话中的值。
我的意思是这条线特别是:
inhalt_time = $("input[type='radio'][name='chooseTime']:checked").val();
如果我删除该行:
$("input[type='radio'][name='chooseTime']").val(chosen_time).prop('checked', true);
更新脚本再次运行。
有谁知道如何避免这种冲突?
这是我的HTML:
<div class="chooseTime">
Bitte wählen Sie ihr gewünschte Lieferzeit.
<label class="radio">
<input type="radio" name="chooseTime" value="06:00 Uhr - 10:00 Uhr" />
06:00 Uhr - 10:00 Uhr
</label>
<label class="radio">
<input type="radio" name="chooseTime" value="10:00 Uhr - 14:00 Uhr" />
10:00 Uhr - 14:00 Uhr
</label>
<label class="radio">
<input type="radio" name="chooseTime" value="15:00 Uhr - 17:00 Uhr" />
15:00 Uhr - 17:00 Uhr
</label>
</div>
我的更新jquery:
$('.chooseTime').on('change', 'input[type=radio]', function() {
updateAnzeige();
});
function updateAnzeige() {
inhalt_time = $("input[type='radio'][name='chooseTime']:checked").val();
if(inhalt_time === undefined) {
inhalt_time = "<span class='red'>Bitte wählen Sie eine gewünschte Lieferuhrzeit aus.</span>";
}
$('.anzeige').html(inhalt_time);
}
我对sessionStorage的jquery:
if(sessionStorage.getItem("lieferzeitpunktart") == "Custom") {
chosen_time = sessionStorage.getItem("lieferzeitpunkt_time");
$("input[type='radio'][name='chooseTime']").val(chosen_time).prop('checked', true);
}
答案 0 :(得分:0)
卫生署!!答案很简单。
在.val(chosen_time)
中使用$("input[type='radio'][name='chooseTime']").val(chosen_time).prop('checked', true);
我为每个单选按钮指定了相同的值,而不是检查具有我正在寻找的值的收音机。
正确的代码行当然是:
$("input[type='radio'][name=chooseTime][value='"+chosen_time+"']").attr('checked', true);