Chrome SyntaxError:意外的标识符

时间:2013-03-29 19:29:48

标签: jquery ajax

真的很困惑,我找不到任何错误!

enter image description here

2 个答案:

答案 0 :(得分:5)

您无法在对象文字中声明变量。将pid移到外面:

var pid = ...

$.ajax({ ... });

答案 1 :(得分:1)

您不能在对象文字中包含var语句。您只能在对象文字中包含key: value格式的对象属性。

我认为你想要这样的东西。

var pid = $("span#live-news:first").attr("id");
$.ajax({
  // all the AJAX options go here
});