duandui5648 2019-02-15 02:45
浏览 109
已采纳

附加ajax调用表不清除jquery php中的先前数据?

I am working with jquery and php to get dynamic data with ajax call into table format. I have one select option where i can choose different companies.Onselect i will get some data of particular employee with ajax i am binding that data to table. But problem is if i choose company 1 then i can able to bind data of company 1. onchange company 2 data of company 1 should be disappear and company 2's data only be there. but in my condition onchange company 2 previous data is still there.

Below is my ajax call code:

 $.ajax({

          method: "GET",
           dataType: 'json',
           url:"getdata.php?id="+emp_id,
              success:function (response){
                     $.each(response, function( index, value ) {

                              $("table.table").append("<tr><td>" + response.emp_name + "</td><td>"  + "</td><td><input type='file'></td></tr>");

                      });
              },  
      });

Below is my html:

<table class="table">
        <thead>
        <tr>
            <th>Employee Name</th>
            <th></th>
        </tr>
        </thead>
        <tbody>

        </tbody>
</table>
  • 写回答

2条回答 默认 最新

  • dongmian5325 2019-02-15 02:50
    关注

    since you use append on success of getting data, you must clear the data on your table or else it will only add data below.

    ON YOUR HTML

    Set attr id to your <tbody> tag:

     <tbody = "bodytable">
    

    ON YOUR SCRIPT

    add code to clear the data on your <tbody>

              $("bodytable").empty();
    
     $.each(response, function( index, value ) {
    
          $("table.table").append("<tr><td>" + response.emp_name + "</td><td>"  + "</td><td><input type='file'></td></tr>");
    
          });
    

    There are many ways to do that. Hope this helps!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序