标头位置:将内容加载到页面div中
|
这是我正在建立的网站的结构:
我有first.php其中包括second.php。
在second.php中,我有一个指向表单的链接,我有$ _GET来获取在此结构的最后一页发送的url参数。
form.php告诉action.php(此结构的最后一页),开关的情况是FORM。
内箱形式我有:
header(\"Location: second.php?param1=OK¶m2=OK\");
在这一行中,我使用参数加载了second.php页面,但我需要加载的是包括second.php以及参数的first.php页面,因此我可以使用$ _GET
有什么办法可以做到吗?下面的结构。
万分感谢!
first.php
I\'m the first page<br><br>
<div style=\"width:500px;height:500px;border:2px solid red;\"><?php include \"second.php\" ?></div>
second.php
<?php
$param1 = $_GET[\'param1\'];
$param2 = $_GET[\'param2\'];
?>
<script language=\"javascript\" src=\"http://code.jquery.com/jquery-1.4.4.min.js\"></script>
<script>
$(document).ready(function(){
$(\"#theform\").click(function(theevent){
$(\"#pre_target\").html(\'<div id=\"target\"></div>\');
theform();
});
})
function theform() {
$(\"#target\").load(\"form.php\", {}, function(){ });
}
</script>
I\'m the second page
<div id=\"pre_target\">
<a href=\"#\" id=\"theform\">Go to form</a>
</div>
form.php
<form method=\"post\" action=\"action.php\">
<input type=\"hidden\" name=\"ACTION\" value=\"FORM\">
<input type=\"submit\" value=\"submit\" name=\"submit\">
</form>
action.php
<?php
switch($_REQUEST[\"ACTION\"]) {
case \"FORM\":
header(\"Location: second.php#pre_target?param1=OK¶m2=OK\");
break;
.
.
.
?>
没有找到相关结果
已邀请:
1 个回复
温拎凯玛
改成: