<a class="checkModelButton" href="addrow.php">ADD ROW</a>
<table>
   <thead>
       <th>Name</th>
   </thead>
   <tboby id="model_row">
       <tr>Nokia N70</tr>
   </tbody>
</table>


和jQuery:

jQuery('.checkModelButton').click(function(){
   var url = jQuery(this).attr('href');
   jQuery.ajax({
      type:'get',
      cache: false,
      url: url,
      success: function(html){
         jQuery('#model_row').html(html);
      }
   });
});


在文件addrow.php中

<tr>Nokia N71</tr>


当我单击标签时,结果是:

   <table>
       <thead>
           <th>Name</th>
       </thead>
       <tboby id="model_row">
           <tr>Nokia N71</tr>
       </tbody>
    </table>


如何将其修复为结果是:

   <table>
       <thead>
           <th>Name</th>
       </thead>
       <tboby id="model_row">
           <tr>Nokia N70</tr>
           <tr>Nokia N71</tr>
       </tbody>
    </table>

最佳答案

使用.append().appendTo()代替.html()

喜欢

success: function(html){
         jQuery('#model_row').append(html);
      }


要么

 success: function(html){
             jQuery(html).appendTo('#model_row');
          }

09-20 02:03