3 つのオプション (3 つのリンク) を含む cookie ベースのメニューを作成しようとしています。ここで、ユーザーがサイトにアクセスしたときに、3 つのオプションのいずれかを選択する必要があるようにしたいと考えています。ユーザーの選択は Cookie に保存されるため、次回同じサイトにアクセスしたときに再度選択する必要がなく、以前の選択に自動的に移動する必要があります。
これはそのための私のコードです
</style>
<!-- style Develpor page ends here-->
<script src="jqery1.8.js"></script>
<script type="text/javascript">
var val;
$(document).ready(function (e) {
$('.nav a').click(function (event) {
event.preventDefault();
val = $(this).index();
if (val == 0) {
$('#hide_main').hide();
$('.main_BSNS').animate({
opacity: "show",
height: "400px"
}, 'slow')
} //if val==0 ends here
else if (val == 1) {
$('#hide_main').hide();
$('.main_ACTNT').animate({
opacity: "show",
height: "400px"
}, 'slow')
} else if (val == 2) {
$('#hide_main').hide();
$('.main_devp').animate({
opacity: "show",
height: "400px"
}, 'slow')
}
});
});
<!--cookies starts here-->
function getCookie(c_name) {
var i, x, y, ARRcookies = document.cookie.split(";");
for (i = 0; i < ARRcookies.length; i++) {
x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
x = x.replace(/^\s+|\s+$/g, "");
if (x == c_name) {
return unescape(y);
}
}
}
function setCookie(c_name, value, exdays) {
var exdate = new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
document.cookie = c_name + "=" + c_value;
}
function checkCookie() {
var username = getCookie("BSNS");
if (username != null && username != "") {
$('#hide_main').hide();
$('.main_BSNS').animate({
opacity: "show",
height: "400px"
}, 'slow')
} else {
username=val;
alert(val);
if (username != null && username != "") {
setCookie("BSNS", username, 365);
$('#hide_main').hide();
$('.main_BSNS').animate({
opacity: "show",
height: "400px"
}, 'slow')
}
}
}
<!--cookies ends here-->
</script>
現在、関数checkCookie()
はボディによって呼び出されonload="checkCookie()"
、アラートは値を返します。val
これは、以前にロードされているundefined
ためですが、この困難を克服する方法がわかりません。checkCookie()
document.write