使用 jquery 动态添加 facebook like 按钮
如何使用 jquery 动态添加 facebook 之类的按钮? 我计划拥有一个画廊,并想在每张图片下添加“添加类似”按钮? 我已经尝试过,但它没有呈现任何内容: $('.share_button').append("(fb:likelayout='button_count'font='tahoma')(/fb:like)") 其中 share_button 是包含 Like 按钮的 div 标签的类名。
提前致谢, 伊万
How can i dynamically add facebook like button using jquery?
I'm planning to have a gallery and want to add add like buttons under every image?
I've tried this but it doesn't render anything:
$('.share_button').append("(fb:like layout='button_count' font='tahoma')(/fb:like)")
where share_button is a classname of div tag that will contain the like button.
Thanks in advance,
Ivan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,它应该是:
然后,你应该添加这一行:
但是,我建议你使用 ID 而不是 class,否则上面的代码将解析包含类
.share_button
的所有节点。First of all, it should be:
Then, you should add this line:
However, I suggest you to use ID instead of class, or the codes above will parse all nodes containing class
.share_button
.你还应该有
并在您应该解析页面加载后添加的 FB 标签之后。之前已经回答过这里
You also should have
and after you should parse FB tags that you add after page was loaded. It was previously answered here on SO