JQuery AJAX从数据库中获取数据并将其提供给HTML?

时间:2014-04-18 06:58:05

标签: jquery

我想使用数据库数据并使用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]);
      }
    });
  });
}

1 个答案:

答案 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);
           }
      });
 }