-1

我收到上述未捕获的语法错误,我认为这会导致我的下一个错误,即

未捕获的 ReferenceError:addEvent 未定义 onclick

我的功能似乎相当简单,我不太确定问题出在哪里:

 function addEvent(event, user){
    $.ajax({
        url: 'http://127.0.0.1:8000/addEvent/',
        type: "POST",
        data: {event_id: event, profile: user},
        success: function(){
            $('hello').html("Yes");
        }
        error: function() {
            $('hello').html("No");
        }
    });
  }
4

1 回答 1

2

少了一个逗号。像这样改变它:

function addEvent(event, user){
  $.ajax({
      url: 'http://127.0.0.1:8000/addEvent/',
      type: "POST",
      data: {event_id: event, profile: user},
      success: function(){
          $('hello').html("Yes");
      },
      error: function() {
          $('hello').html("No");
      }
  });
}
于 2013-06-14T15:20:09.877 回答