如何使用 jQuery 在 cookie 中保存 select 的值?
How to save value from select in cookie using jQuery?
首先,我正在使用 jquery.cookie and Bootstrap material design。我在保存来自 select.
的 cookie 值时遇到问题
var getval = $.cookie('selected-val');
if (getval == 10000) {
$("#refresh option[value='10000']").attr("selected", "selected");
};
if (getval == 20000) {
$("#refresh option[value='20000']").attr("selected", "selected");
};
if (getval == 30000) {
$("#refresh option[value='30000']").attr("selected", "selected");
};
if (getval == 60000) {
$("#refresh option[value='60000']").attr("selected", "selected");
};
if (getval == 180000) {
$("#refresh option[value='180000']").attr("selected", "selected");
};
var valsel = $("#refresh").val();
$.cookie('selected-val', '' + valsel + '', {
expires: 365,
path: '/'
});
setInterval(function() {
myfunction()
}, getval);
<div class="form-group">
<div class="col-lg-12">
<select class="form-control" id="refresh">
<option id="ref-1" value="10000">10 s</option>
<option id="ref-2" value="20000">20 s</option>
<option id="ref-3" value="30000">30 s</option>
<option id="ref-4" value="60000">1 min</option>
<option id="ref-5" value="180000">3 min</option>
</select>
<br>
</div>
</div>
我希望用户可以 select 在我的函数中刷新时间,但我不知道如何在 cookie 中保存用户 select 编辑的内容。始终显示在 cookie 的第一个位置。
你为什么不试试:
jQuery(document).ready(function(){
var selectedVal = jQuery.cookie("selected-val");
if (selectedVal) {
jQuery("#refresh").val(selectedVal);
}
jQuery("#refresh").on("change", function(){
var selection = jQuery(this).val();
jQuery.cookie("selected-val", selection, {expires: 365, path: '/'})
});
});
首先,我正在使用 jquery.cookie and Bootstrap material design。我在保存来自 select.
的 cookie 值时遇到问题var getval = $.cookie('selected-val');
if (getval == 10000) {
$("#refresh option[value='10000']").attr("selected", "selected");
};
if (getval == 20000) {
$("#refresh option[value='20000']").attr("selected", "selected");
};
if (getval == 30000) {
$("#refresh option[value='30000']").attr("selected", "selected");
};
if (getval == 60000) {
$("#refresh option[value='60000']").attr("selected", "selected");
};
if (getval == 180000) {
$("#refresh option[value='180000']").attr("selected", "selected");
};
var valsel = $("#refresh").val();
$.cookie('selected-val', '' + valsel + '', {
expires: 365,
path: '/'
});
setInterval(function() {
myfunction()
}, getval);
<div class="form-group">
<div class="col-lg-12">
<select class="form-control" id="refresh">
<option id="ref-1" value="10000">10 s</option>
<option id="ref-2" value="20000">20 s</option>
<option id="ref-3" value="30000">30 s</option>
<option id="ref-4" value="60000">1 min</option>
<option id="ref-5" value="180000">3 min</option>
</select>
<br>
</div>
</div>
我希望用户可以 select 在我的函数中刷新时间,但我不知道如何在 cookie 中保存用户 select 编辑的内容。始终显示在 cookie 的第一个位置。
你为什么不试试:
jQuery(document).ready(function(){
var selectedVal = jQuery.cookie("selected-val");
if (selectedVal) {
jQuery("#refresh").val(selectedVal);
}
jQuery("#refresh").on("change", function(){
var selection = jQuery(this).val();
jQuery.cookie("selected-val", selection, {expires: 365, path: '/'})
});
});