jQuery replaceWith(数据)没有正确地完成他的工作

时间:2010-04-24 03:52:19

标签: jquery ajax

我做了一个小的ajax div刷新,但不是用新的值替换值,jquery在旧的数据之前添加新数据。

请问可能导致什么?

<script type="text/javascript">
$(document).ready(function(){


        $('#AJAX').click(function(e){  
            e.preventDefault();  
            var hebergeur = $('#hebergeurJQUERY').val();

                $.post("/statistiques/maj-bloc-commentaires.php", { hebergeur : hebergeur },
                 function(data){
                    // déclenchée seulement si succès
                    $("#TOREPLACE").replaceWith(data).val( );
                 });  
            });


 }); 
</script>

HTML:

    print '<div id="TOREPLACE">
<div class="detail_commentaires"> 
        <table class="tableau_detail_commentaires">
         <tr>
          <td class="tab_space">Serveur <strong>'.$row['type'].'</strong></td>
          <td>Qualite</td>
          <td style="color:'.$c_vote.'">'.htmlentities($row['vote']).'</td>
         </tr>
</table>
</div>
</div>';

PHP ajax echo:

打印'

<table class="tableau_detail_commentaires">
 <tr>
  <td class="tab_space">Serveur <strong>'.$row['type'].'</strong></td>
  <td>Qualite</td>
  <td style="color:'.$c_vote.'">'.htmlentities($row['vote']).'</td>
 </tr></table></div></div>';

由于

1 个答案:

答案 0 :(得分:0)

好的,我终于发现要替换的ID在PHP循环中

我修正了;)