从不同的<div> HTML </div>提交表单

时间:2012-08-06 02:09:42

标签: php html

我在使用2个不同的div(标签)提交表单时遇到问题。我想提交此表单中的所有值..但是当我提交时,我只从(div class =“tab1”)收到的值不是来自div class =“tab2”。如何使用不同的div提交所有值

page.php文件

<div class="tab1">
<h2>Basic Information</h2>
<form name="pages_details" method="post" action="pages/save_pages.php">
<table>  
    <tr>  
        <td>Name:</td>  
        <td><input name="name" type="text" ></input></td>  
    </tr>  
    <tr>  
        <td>Order:</td>  
        <td><input name="ord" type="text"></input></td>  
    </tr> 
</table>
</div>
<div class="tab2">
<h2>Additional Information</h2>
<table>  
 <tr>  
    <td>Special:</td>  
    <td><input name="special" type="text" ></input></td>  
 </tr> 
 <tr>  
    <td>Title:</td>  
    <td><input name="title" type="text"></input></td>  
 </tr> 
</table>
</div>
<input type="submit" name="save" value="save">
</form>

save_pages.php

<?php
$name = $_REQUEST['name'];
$ord = $_REQUEST['ord'];
$special = $_REQUEST['special'];
$title = $_REQUEST['title'];

echo $name;
echo $ord;
echo $special;
echo $title;
?>

2 个答案:

答案 0 :(得分:1)

尝试确保以正确的顺序关闭代码。 像这样构造代码可能会导致一些奇怪的错误。

不对:

<div>
<form>    
</div>
</form>

所以你可能想这样做。

<form>
<div>
</div>
</form>

答案 1 :(得分:1)

我建议使用jquery ajax根据你的情况提交表单。

例如:

var datas = $(form).serialize();
$.post("pages/save_pages.php", datas, function(){

});

参考: 发布 - http://api.jquery.com/jQuery.post/ 序列化 - http://api.jquery.com/serialize/