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 python动态规划:N根火柴摆出的最大数字
  • ¥20 (标签-excel)
  • ¥200 求idea10和MyEclipse7.1
  • ¥20 vb6.0截取当前窗体保存为jpg文件
  • ¥20 苹果手机不使用大疆sdk怎么获取遥控器控制信息或如何接入大疆sdk并且成功上架sdk
  • ¥20 woocommerce 注册按键重定向
  • ¥100 求书法图像文字切割代码
  • ¥15 同一个波形探测距离不同的目标,为什么fft之后得到的频谱图会发生移动,不应该时移不改变幅度谱吗(标签-matlab)(相关搜索:matlab仿真)
  • ¥15 Proteus仿真程序只能执行一次
  • ¥15 语音识别websocket报错