我有一個小腳本返回我的窗口的寬度和高度,我需要的是將結果保存到一個PHP會話變量。使用jQuery函數的結果,並保存到PHP變量
我的腳本
var viewportwidth;
var viewportheight;
if (typeof window.innerWidth != 'undefined')
{
viewportwidth = window.innerWidth,
viewportheight = window.innerHeight
}
像
$_SESSION['w'] = viewportwidth
$_SESSION['h'] = viewportheight
這可能嗎?
答案是AJAX。 – Epodax
@Epodax是正確的,你需要使用它的JQuery的Ajax – Nehal