Chrome语法错误:意外标识符

真的很困惑,我找不到任何错误!Chrome语法错误:意外标识符

回答:

您不能在对象文字中声明变量。 Move pid outside:

var pid = ... 

$.ajax({ ... });

回答:

你不能有一个var声明对象文本的内部。您只能在对象文字中使用key: value格式的对象属性。

我想你是想要这样的事情。

var pid = $("span#live-news:first").attr("id"); 

$.ajax({

// all the AJAX options go here

});

以上是 Chrome语法错误:意外标识符 的全部内容, 来源链接: utcz.com/qa/265893.html

回到顶部