0
<script language="javascript">
<!--
writeCookie();

function writeCookie()
{
var today = new Date();
var the_date = new Date("December 31, 2023");
var the_cookie_date = the_date.toGMTString();
var the_cookie = "users_resolution="+ screen.width +"x"+ screen.height;
var the_cookie = the_cookie + ";expires=" + the_cookie_date;
document.cookie=the_cookie

location = 'screen.php';
}
//-->
</script>

此脚本检测屏幕分辨率。如果我在浏览器中“打开”阻止 cookie,我会得到一个“迷你 ddos​​”,一个无休止的更新站点页面 screen.php。如何摆脱这种局面?

4

1 回答 1

3

您的代码在页面加载时被调用并始终刷新页面。您没有条件语句来防止无限循环。

为了让事情更清楚,这就是正在发生的事情。

步骤 1)页面已加载

步骤 2)你的函数被调用

步骤 3)函数刷新页面。我们回到第 1 步。

于 2012-04-27T17:01:32.650 回答