嘿伙计们,我有这个代码;
<Script language="JavaScript">
function goto(form) { var index=form.select.selectedIndex
if (form.select.options[index].value != "0") {
location=form.select.options[index].value;}}
</SCRIPT>
<FORM NAME="form1">
<SELECT NAME="select" ONCHANGE="goto(this.form)" SIZE="1">
<OPTION VALUE="">-------Choose a Selection-------
<OPTION VALUE="/">Home
<OPTION VALUE="page.htm">Area 1
<OPTION VALUE="page.htm">Area2
<OPTION VALUE="page.htm">Area 3
<OPTION VALUE="page.htm">Area 4
<OPTION VALUE="page.htm">Area 5</SELECT>
</FORM>
我想要做的是在用户单击其中一个时生成一个 cookie,然后当他们返回我的网站时,如果 cookie 存在,它将重定向到该页面。基本上这将是一个感兴趣的区域。虽然我想要它,所以如果他们想搜索其他地区,他们可以去其他地区。
我不知道我需要什么,有人可以帮助我理解 cookie ui 以及我将如何将其实现到此代码中吗?
如果您需要任何其他信息,请询问我愿意回答并提供更多信息