错误未捕获的SyntaxError:意外的令牌:

时间:2016-03-16 09:14:06

标签: javascript jquery json ajax

$.ajax({
  u r l: "exampl.com",
  type: "GET",
  dataType: "jsonp",
  success: function (msg) {
    console.log(msg);
  }
});

1 个答案:

答案 0 :(得分:0)

属性初始值设定项中的标识符不能包含空格,除非它们在引号中:

$.ajax({
  u r l: "exampl.com",
//^^^^^----------------------------- Remove the spaces
  type: "GET",
  dataType: "jsonp",
  success: function (msg) {
    console.log(msg);
  }
});