Update data in a table with jquery and ajax

后端 未结 5 2064
灰色年华
灰色年华 2020-12-10 22:53

I am trying to update a table according to ajax respond. My update should be insert as the first row inside in my table. With my coding this is ha

5条回答
  •  借酒劲吻你
    2020-12-10 23:30

    use html instead of append

    success: function(data) {
            $('#manage_user table > tbody:first').html(data);
            //alert(data);
    }
    

提交回复
热议问题