我想使用数据库数据并使用JQuery的AJAX将其发送到PHP脚本。我怎么做到这一点?
到目前为止,这是代码:
function update(id) {
$("#update").click(function() {
$.ajax({
type: 'POST',
url: '<?= base_url("event/update_event_view"); ?>',
data: {'id': id},
dataType: 'json',
success: function(retval) {
$('#display').hide();
$('#up').show();
$('#up').html(retval[0]);
}
});
});
}
答案 0 :(得分:0)
尝试这种方式:
function update(id) {
$.ajax({
type: 'POST',
url: "@Url.Action("update_event_view", "event")",
data: {'id': id},
dataType: 'json',
success: function(retval) {
$('#display').hide();
$('#up').show();
$('#up').html(retval);
}
});
}