根据组合框的值重新加载页面的一部分

时间:2014-12-23 12:47:10

标签: javascript php jquery

enter image description here 我想使用框中给出的值重新加载表部分。当我按下视图时,它将显示所需的表格,从组合框和组合框中获取值将显示我给出的值。

<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>  

1 个答案:

答案 0 :(得分:0)

你可以试试jQuery Form插件(a.k.a ajaxForm)http://jquery.malsup.com/form/

 $(document).ready(function() {
     $('#myForm').ajaxForm('target': '#divToUpdate');
 });

在HTML中你应该制作标准表格(GET或POST),行动页面应该只返回将加载到#divToUpdate的页面片段