我能够获取存储在会话中的值。现在我想在我的选择框中显示 cookie 值作为选定值。
我尝试使用下面的代码,但不幸的是我的 cookie 值没有被选中。
请帮我解决我的问题。
<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>
</head>
<body>
<select id='select_letter'>
<option>Java</option>
<option>C</option>
<option>php</option>
<option>python</option>
<option>c sharp</option>
</select>
<input type="button" id='continue' value="Save as default value"/>
<!-- On click of this link the current page will load -->
</body>
</html>