程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP向iframe頁面傳遞GET參數實例

PHP向iframe頁面傳遞GET參數實例

編輯:關於PHP編程

PHP:向iframe頁面傳遞GET參數

<form action="px_result.php" method="post" id="px_form" enctype="multipart/form-data" target="pxifame" name="pxform">
<ul>
<li><a id="zpx" href="#" onclick="local_action();"></a></li>
<li><a id="status1" href="#" onclick="local_action(1);"></a></li>
<li><a id="status5" href="#" onclick="local_action(5);"></a></li>
<li><a id="status9" href="#" onclick="local_action(9);"></a></li>
</ul>
</form>
<iframe width="740" id="myif" name="pxifame" frameborder="0" scrolling="no" onload="this.height=300">
</iframe>

在同一頁面寫一個javascript函數

<script language="javascript" type="text/javascript">
function local_action(vaule)
{
document.pxform.action="px_result.php"; //這裡的作用是在不刷新頁面的前提下,重置action地址
if(1 == vaule)
{
document.pxform.action+="?status=1"; //在響應頁面加上GET參數後綴
}
if(5 == vaule)
{
document.pxform.action+="?status=5";
}
if(9 == vaule)
{
document.pxform.action+="?status=9";
}
document.pxform.submit(); //提交
}
</script>

根據傳遞給函數的參數來寫入px_result.php頁面的後綴GET參數。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved