PHP與Javascript的兩種互動方式_PHP
來源:互聯網
上載者:User
關鍵字
方式
互動
action.php
main.htm
頁面
在網頁製作過程中怎樣在不重新整理頁面的情況下使前台頁面和
後台CGI頁面保持互動一直是個問題。這裡介紹兩個我在實踐中使
用的方法。
方法一:通過Cookie互動。一共是三個檔案,分別為:
index.htm,action.php,main.htm
原理為前台頁面main.htm和後台action.php通過頁面架構
index.htm組織起來,將action.php的頁面寬度設為0,這樣並不
影響顯示。action.php將資訊放入cookie中,main.htm通過讀取
cookie來實現互動。在main.htm中也可以通過重新讀取action.php
來實現控制後台CGI程式。
index.htm
---------------------------------------------------------------
Test
<br> <body bgcolor="#FFFFFF"> <br> <p>本頁使用頁面架構,但是您的瀏覽器不支援。</p> <br> </body> <br>
---------------------------------------------------------------
action.php
---------------------------------------------------------------
srand((double)microtime()*1000000);
$result=rand(0,100);
setcookie("action",$result,time()+900,"/");
?>
---------------------------------------------------------------
main.htm
---------------------------------------------------------------
Test
重新讀取Cookie
---------------------------------------------------------------
方法二:直接通過parent.*.*來實現互動。一共是三個檔案,分別為:
index.htm,action.php,main.htm,其中index.htm和前面的一樣。
原理為通過parent.rightFrame.test.current_cookie.value直接傳遞
資訊。
action.php
---------------------------------------------------------------
srand((double)microtime()*1000000);
$result=rand(0,100);
?>
---------------------------------------------------------------
main.htm
---------------------------------------------------------------
Test
重新讀取Cookie
---------------------------------------------------------------