我想使用框中给出的值重新加载表部分。当我按下视图时,它将显示所需的表格,从组合框和组合框中获取值将显示我给出的值。
<table class="table table-striped">
<thead>
<tr>
<th>Order Number</th>
<th>Order Date</th>
<th>Status</th>
<th>Product Name</th>
<th>ProductLine</th>
<th>Amount</th>
<th>Customer Name</th>
<th>Employee Name</th>
</tr>
</thead>
<?php
include('./process/connection.php');
while($res=mysql_fetch_array($result)){
echo "<tr>";
echo "<td>".$res['orderNumber']."</td>" ;
echo "<td>".$res['orderDate']."</td>" ;enter code here
echo "<td>".$res['status']."</td>" ;
echo "<td>".$res['productName']."</td>" ;
echo "<td>".$res['productLine']."</td>" ;
echo "<td>".$res['amount']."</td>" ;
echo "<td>".$res['customerName']."</td>" ;
echo "<td>".$res['Employee']."</td>" ;
echo "<tr>";
}
?>
</table>
答案 0 :(得分:0)
你可以试试jQuery Form插件(a.k.a ajaxForm)http://jquery.malsup.com/form/
$(document).ready(function() {
$('#myForm').ajaxForm('target': '#divToUpdate');
});
在HTML中你应该制作标准表格(GET或POST),行动页面应该只返回将加载到#divToUpdate的页面片段