我目前正在使用 cookie 来存储屏幕的宽度,但我想知道每次页面刷新时浏览器的宽度。
if(!isset($_COOKIE['screenwidth']))
{
return "<script>
if (window.outerWidth) {
document.cookie='screenwidth='+window.outerWidth+'; path=/';location.reload(true);
} else {
document.cookie='screenwidth='+document.documentElement.clientWidth+'; path=/';location.reload(true);
}
</script>";
}
这是我目前拥有的。有没有办法用jQuery设置宽度?我对此更加熟悉。另外,我将如何使用 JavaScript 设置宽度?