Jquery删除记录

时间:2013-02-06 23:27:22

标签: jquery mysql

我尝试使用此jquery代码删除记录:

$('#button_erase').click(function() {
    url: 'connection.php?query=delete from table' // ???
}

connection.php我已经在db上建立了连接。

但是我无法删除表格中的记录。

2 个答案:

答案 0 :(得分:1)

$('#button_erase').click(function() {
    // use post to tap your server
    $.post('connection.php?query=delete from table');
}

http://api.jquery.com/jQuery.post/

答案 1 :(得分:0)

 var dataString = 'query='+ 'your query'; 
 $('#button_erase').click(function() {
                                    event.preventDefault();
                                    $.ajax({   
                                        type: "POST",   
                                        url: "connection.php", 
                                        dataType: "text html",
                                        data: dataString,   
                                        success: function() {   

                                        }   
                                    })
                                });