我正在尝试将选择框值存储在我的 cookie 中。
用户点击“默认链接”,然后应在 cookie 中设置所选值。当他们打开我的 URL 时,默认选择的值应该显示它们。
为此,我编写了以下代码。但我不知道如何检索提交的名为“语言”的 cookie。
我的疑问:如何在我的下拉列表中将当前提交的 cookie 值显示为默认选择值?
请帮忙。
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#continue').click(function() {
var singleValues = $("#select_letter").val();
$.cookie("language", singleValues);
})
});
</script>
</head>
<body>
<select id='select_letter'>
<option>Java</option>
<option>C</option>
<option>php</option>
<option>python</option>
<option>c sharp</option>
</select>
<a href='/PhtestProject/index.php' id='continue'>Save as default value</a>
<!-- On click of this link the current page will load -->
</body>
</html>
更新:
<script>
$(document).ready(function(){
$('#continue').click(function() {
var singleValues = $("#select_letter").val();
$.cookie("language", singleValues);
})
alert($.cookie('language')); //getting the correct value which are set in cookie
$('#select_letter option[value="'+$.cookie('language')+'"]').attr('selected', 'selected'); //This is not working,Not setting the cookie value as selected
});
</script>