我曾尝试使用此 jquery 代码删除记录:
$('#button_erase').click(function() {
url: 'connection.php?query=delete from table' // ???
}
在connection.php
我已经在 db 上设置了我的连接。
但我无法删除表中的记录。
$('#button_erase').click(function() {
// use post to tap your server
$.post('connection.php?query=delete from table');
}
var dataString = 'query='+ 'your query';
$('#button_erase').click(function() {
event.preventDefault();
$.ajax({
type: "POST",
url: "connection.php",
dataType: "text html",
data: dataString,
success: function() {
}
})
});