Değişken geçti kimliği ile kullanma jquery remove ().

0 Cevap php

Bu fonksiyonudur

function deleteItem(id) {
    $.post("_asyncpage.php",
        {id:id},
        function (result) {
            if (result == true) {
                $('#'+id).remove();
            }
        }, "json"); 
}

Yani, bir db üzerinde rastgele şeyler yürütmek bir sayfaya göndermek ve doğru / yanlış dönmek fonksiyonu id almak, açıklamak.

The function inside check for result that can be true/false as said before. If true proceed to remove the dom element that match the id passed.

Db doğru güncelleştirilmiş ama. () Çalışmaz kaldırmak olduğunu ... Birisi bilir neden? (

Aşağıdaki html yapının bir örneğidir. TD içinde tablo silinecek biridir.

<td width="120" valign="top" id="13_02">
   <table cellspacing="0" cellpadding="0" class="tableProg" id="1">
   <tbody>
      <tr>
         <td colspan="3"><h4 style="margin: 0pt;">Title</h4></td>
      </tr>
      <tr>
         <td colspan="3">h. 13:35</td></tr><tr><td width="74"><span style="font-weight: bold; color: rgb(0, 102, 204);">Su</span>: TV</td>
         <td width="22"><a href="javascript:openEditItem('2010/08/24','1')"><img src="static/images/edit.gif"></a></td>
         <td width="22"><a href="javascript:deleteItem('1')"><img src="static/images/delete.gif"></a></td>
      </tr>
   </tbody>
   </table>
</td>

0 Cevap