0

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

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

connection.php我已经在 db 上设置了我的连接。

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

4

2 回答 2

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

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

于 2013-02-06T23:34:00.453 回答
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() {   

                                        }   
                                    })
                                });
于 2013-02-07T01:47:02.717 回答