我们可以将 facebook 脚本引用放在 head 部分吗?
为了获得 facebook 评论计数,我正在这样做:
<div id="fb-root">
</div>
<script src="http://connect.facebook.net/en_US/all.js#appId=555555&xfbml=1">
</script>
<fb:comments href="<%: url %>" num_posts="15" width="518">
</fb:comments>
我在很多地方都有这个,所以可以将 fb-root 和脚本引用放在 head 部分或母版页中(我正在使用 asp.net mvc )而不是将其放在 fb:comments 旁边?
To get the facebook comment count, I'm doing this:
<div id="fb-root">
</div>
<script src="http://connect.facebook.net/en_US/all.js#appId=555555&xfbml=1">
</script>
<fb:comments href="<%: url %>" num_posts="15" width="518">
</fb:comments>
I have this in many places so is it okay to place the fb-root and script reference in the head section or in a master page (I'm using asp.net mvc) instead of placing it next to the fb:comments?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以。您可以将脚本引用放在 head 中。并在文档中有一个 fb-root(正文的开头似乎是一个好地方)。脚本加载后,所有 fb: 标签都将被解析。
yes you can. you can put a script reference in head. and have one fb-root in the document (beginning of body seems like a good place). all fb: tags will then be parsed once the script loads.