0

下面的代码对我来说似乎有效;我真的有语法错误吗?在控制台中运行此代码:

$("body").append($("<script />", {
  html: "  window.fbAsyncInit = function() { "+
"    FB.init({"+
"      appId      : '[valid_id]', // App ID"+
"      status     : true, // check login status"+
"      cookie     : true, // enable cookies to allow the server to access the session"+
"      xfbml      : true  // parse XFBML"+
"    });"+
"  };"+
"  (function(d){"+
"     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];"+
"     if (d.getElementById(id)) {return;}"+
"     js = d.createElement('script'); js.id = id; js.async = true;"+
"     js.src = 'https://connect.facebook.net/en_US/all.js';"+
"     ref.parentNode.insertBefore(js, ref);"+
"   }(document));"
}));

回报:

SyntaxError:输入意外结束

4

1 回答 1

2

看了一会儿,还是很明显的 ;-)

您所有连接的字符串部分最终都会在一行JavaScript 代码中完成 - 所以您不能// comments在那里使用,因为上升到哪里?没错,到头了!

要么完全去掉注释,要么使用/* comment */语法。

于 2012-07-03T16:58:58.930 回答