在网页制作过程中怎样在不刷新页面的情况下使前台页面和后台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
Test
Test
一共是三个文件,分别为: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
代码如下:
本页使用页面框架,但是您的浏览器不支持。
action.php
代码如下:
<?php
srand((double)microtime()*1000000);
$result=rand(0,100);
setcookie(“action”,$result,time()+900,”/”);
?>
srand((double)microtime()*1000000);
$result=rand(0,100);
setcookie(“action”,$result,time()+900,”/”);
?>
main.htm
代码如下:
当前参数为
重新读取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);
?> 来源gaodai$ma#com搞$$代**码网
srand((double)microtime()*1000000);
$result=rand(0,100);
?> 来源gaodai$ma#com搞$$代**码网
main.htm
代码如下:
当前参数为
重新读取Cookie
以上就是php后台程序与Javascript的两种交互方式的详细内容,更多请关注gaodaima搞代码网其它相关文章!