如何使用js通过cookie发送参数

时间:2012-04-05 15:08:52

标签: javascript html cookies

我有两个HTML文件。一个文件需要将标题发送到第二个文件。 第二个文件需要接收标题并alert()。 根据需要,我需要更改代码才能运行?

cookieTitleSend.html

<html>
<head>
<script type="text/javascript">

function setCookie(Title_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var Title_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=Title_name + "=" + Title_value;
}
</script>
</head>
<body onload="setCookie("Title_name",PHP Hello World,1);">
</body>
</html>

cookieTitleReceive.html

<html>
<head>
<script type="text/javascript">
function getCookie(Title_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==Title_name)
    {
    return unescape(y);
    }
  }
}

function checkCookie()
{
var Title_name=getCookie("Title_name");
if (Title_name!=null && Title_name!="")
  {
  alert("Welcome again your Title is
:  " + Title_name);
  }
else 
  {
  Title_name=prompt("There is no title :","");

  }
}
</script>
</head>
<body onload="checkCookie()">
</body>
</html>

2 个答案:

答案 0 :(得分:2)

您的代码看起来有一些问题,但您可以从正确连接事件处理程序开始。

<body onload="setCookie('Title_name','PHP Hello World',1);">

答案 1 :(得分:0)

我认为您的代码中可能会有一些微妙的内容,请查看有关如何使用Cookie的this链接。也就是说,您的setter可能需要进行以下更改:

exdate.setTime(today.getTime() + 3600000*24*exDays);
document.cookie = cookieName+"="+escape(value)
             + ";expires="+exdate.toGMTString();

我在GetCookie循环中看到的东西:

for (i=0;i<ARRcookies.length;i++)

我认为应该是:

for (i=0;i<ARRcookies.length-1;i++)

希望有所帮助!

-sf