为什么在使用setcookie()函数创建两个cookie后无法重新加载同一页面? 页面在重新加载后继续加载到超时,在apache日志中没有任何错误消息,在chrome开发人员工具中没有任何内容。 问题可能与javascript崩溃,因为我删除了HTML中的行,页面可以加载,任何方法来纠正这个错误?
这是代码:
<!doctype html>
<html>
<head>
<?php include "**cookie2.php**";?>
<!--other content in head-->
</head>
<body>
**<!--a button onclick will run cookie1.php-->**
<!--other contents in body-->
<script src="**readcookie1.js**" language="javascript"></script>
</body>
</html>
in file **cookie1.php**
{
**setcookie("login",1,0,"/");**
}
in file **cookie2.php**
{
**setcookie("pageView",0,0,"/");**
}
in file **readcookie1.js**
{
//use **document.cookie** to get cookie2
}
答案 0 :(得分:0)