触发单击单选按钮并记住页面刷新时的选择
Trigger click on radio button with remembering selection on page refresh
此题不重复。
我有两个单选按钮(radio1、radio2)。
我能够实现以下目标,但单独实现:
- 在页面加载时触发对 "radio1" 的点击。因此,无论何时加载页面,都会单击该按钮。
- 记住用户手动单击的选定单选按钮,使用 Joseph Silber 在 this answer 中描述的本地存储。因此,如果用户手动单击 "radio2" 然后刷新页面,它会记住该选择。
问题是我不能同时使用这两种方法。因为触发的点击总是占用本地存储,导致刷新页面时不记得选中的单选按钮。
默认情况下,我需要在页面加载时单击(未选中)"radio1",但是当用户手动单击 "radio2" 时,它会记住该选择,并且每当刷新页面时 "radio2" 将根据用户的选择被点击。
我尝试了很多代码来组合我必须让它们一起工作的代码,但我无法弄清楚。
页面加载时触发点击单选按钮的代码:
<script type="text/javascript">
$(document).ready(function() {
$("#radio1 input:radio").click(function() {
alert("clicked");
});
$("input:radio:first").prop("checked", true).trigger("click");
});
</script>
本地存储代码;记住电台选择:
<script type="text/javascript">
$(function()
{
$('input[type=radio]').each(function()
{
var state = JSON.parse( localStorage.getItem('radio_' + this.id) );
if (state) this.checked = state.checked;
});
});
$(window).bind('unload', function()
{
$('input[type=radio]').each(function()
{
localStorage.setItem(
'radio_' + this.id, JSON.stringify({checked: this.checked})
);
});
});
</script>
同样,它们都可以正常工作,但单独使用时,其中任何一个都可以。
如果有人能帮助我使这两种方法一起工作,我将不胜感激。
为什么不直接设置默认收音机 :checked
属性 而是 .trigger('click')
?
$(function(){
//state default radio ':checked' property there:
$("input:radio:first").prop("checked", true);
$("#radio1 input:radio").click(function() {
alert("clicked");
});
// overwrite radio ':checked' property there (if exists in localStorage) :
$('input[type=radio]').each(function(){
var state = JSON.parse( localStorage.getItem('radio_' + this.id) );
if (state) this.checked = state.checked;
});
});
$(window).bind('unload', function(){
$('input[type=radio]').each(function(){
localStorage.setItem(
'radio_' + this.id, JSON.stringify({checked: this.checked})
);
});
});
或者,如果您需要在 DOM 就绪时触发默认收音机的事件处理程序(就像您在代码中使用 .trigger('click')
所做的那样),请使用:
$(function(){
//state default radio ':checked' property there and run its `click` event handler:
radioClick.call($("input:radio:first").prop("checked", true));
$("#radio1 input:radio").click(radioClick);
// method triggered on radio click, will skip the localStorage modification:
function radioClick() {
// you can refer here to 'this' as to clicked radio
alert($(this).val());
}
// overwrite radio ':checked' property there (if exists in localStorage) :
$('input[type=radio]').each(function(){
var state = JSON.parse( localStorage.getItem('radio_' + this.id) );
if (state) this.checked = state.checked;
});
});
$(window).bind('unload', function(){
$('input[type=radio]').each(function(){
localStorage.setItem(
'radio_' + this.id, JSON.stringify({checked: this.checked})
);
});
});
或者,甚至更好,在 HTML:
中设置默认单选按钮 checked
属性
<input type=radio id=radio1 value=radio1 name=radio checked />
<input type=radio id=radio2 value=radio2 name=radio />
<input type=radio id=radio3 value=radio3 name=radio />
...
这样您就可以 checked
原生地拥有它,而不是以编程方式。然后覆盖其 prop
取决于 localStorage
中的内容
编辑(对答案的评论)
$(function () {
$('input[type="radio"]').click(function () {
localStorage.setItem('radioIdSelected', $(this).attr('id'));
// your method to run on selected radio button (alert for demo):
alert($(this).attr('id'));
});
var storageRadio = localStorage.getItem('radioIdSelected');
if (storageRadio !== null && storageRadio !== undefined && $('#' + storageRadio).length) {
$('#' + storageRadio).trigger('click');
} else {
$('input[type="radio"]:first').trigger('click');
}
});
此题不重复。
我有两个单选按钮(radio1、radio2)。
我能够实现以下目标,但单独实现:
- 在页面加载时触发对 "radio1" 的点击。因此,无论何时加载页面,都会单击该按钮。
- 记住用户手动单击的选定单选按钮,使用 Joseph Silber 在 this answer 中描述的本地存储。因此,如果用户手动单击 "radio2" 然后刷新页面,它会记住该选择。
问题是我不能同时使用这两种方法。因为触发的点击总是占用本地存储,导致刷新页面时不记得选中的单选按钮。
默认情况下,我需要在页面加载时单击(未选中)"radio1",但是当用户手动单击 "radio2" 时,它会记住该选择,并且每当刷新页面时 "radio2" 将根据用户的选择被点击。
我尝试了很多代码来组合我必须让它们一起工作的代码,但我无法弄清楚。
页面加载时触发点击单选按钮的代码:
<script type="text/javascript">
$(document).ready(function() {
$("#radio1 input:radio").click(function() {
alert("clicked");
});
$("input:radio:first").prop("checked", true).trigger("click");
});
</script>
本地存储代码;记住电台选择:
<script type="text/javascript">
$(function()
{
$('input[type=radio]').each(function()
{
var state = JSON.parse( localStorage.getItem('radio_' + this.id) );
if (state) this.checked = state.checked;
});
});
$(window).bind('unload', function()
{
$('input[type=radio]').each(function()
{
localStorage.setItem(
'radio_' + this.id, JSON.stringify({checked: this.checked})
);
});
});
</script>
同样,它们都可以正常工作,但单独使用时,其中任何一个都可以。
如果有人能帮助我使这两种方法一起工作,我将不胜感激。
为什么不直接设置默认收音机 :checked
属性 而是 .trigger('click')
?
$(function(){
//state default radio ':checked' property there:
$("input:radio:first").prop("checked", true);
$("#radio1 input:radio").click(function() {
alert("clicked");
});
// overwrite radio ':checked' property there (if exists in localStorage) :
$('input[type=radio]').each(function(){
var state = JSON.parse( localStorage.getItem('radio_' + this.id) );
if (state) this.checked = state.checked;
});
});
$(window).bind('unload', function(){
$('input[type=radio]').each(function(){
localStorage.setItem(
'radio_' + this.id, JSON.stringify({checked: this.checked})
);
});
});
或者,如果您需要在 DOM 就绪时触发默认收音机的事件处理程序(就像您在代码中使用 .trigger('click')
所做的那样),请使用:
$(function(){
//state default radio ':checked' property there and run its `click` event handler:
radioClick.call($("input:radio:first").prop("checked", true));
$("#radio1 input:radio").click(radioClick);
// method triggered on radio click, will skip the localStorage modification:
function radioClick() {
// you can refer here to 'this' as to clicked radio
alert($(this).val());
}
// overwrite radio ':checked' property there (if exists in localStorage) :
$('input[type=radio]').each(function(){
var state = JSON.parse( localStorage.getItem('radio_' + this.id) );
if (state) this.checked = state.checked;
});
});
$(window).bind('unload', function(){
$('input[type=radio]').each(function(){
localStorage.setItem(
'radio_' + this.id, JSON.stringify({checked: this.checked})
);
});
});
或者,甚至更好,在 HTML:
中设置默认单选按钮checked
属性
<input type=radio id=radio1 value=radio1 name=radio checked />
<input type=radio id=radio2 value=radio2 name=radio />
<input type=radio id=radio3 value=radio3 name=radio />
...
这样您就可以 checked
原生地拥有它,而不是以编程方式。然后覆盖其 prop
取决于 localStorage
编辑(对答案的评论)
$(function () {
$('input[type="radio"]').click(function () {
localStorage.setItem('radioIdSelected', $(this).attr('id'));
// your method to run on selected radio button (alert for demo):
alert($(this).attr('id'));
});
var storageRadio = localStorage.getItem('radioIdSelected');
if (storageRadio !== null && storageRadio !== undefined && $('#' + storageRadio).length) {
$('#' + storageRadio).trigger('click');
} else {
$('input[type="radio"]:first').trigger('click');
}
});