使用 jquery 在同一页面上的 facebook 小部件之后添加 facebook like 按钮
我正在使用 jquery 在页面上添加 Facebook 小部件和“喜欢”按钮。 我正在使用
$(window).load(function(){
getWidget(//loads php file containing widget code)
});
$(window).load(function(){
getButton(//loads php file containing like button code)
});
问题是,要么加载小部件,要么加载类似按钮,但不能同时加载两者。有时他们一起出现。
我尝试在两者之间添加一些延迟,但它没有按预期工作。是不是一旦小部件加载,您就无法再加载类似按钮了? (我正在使用两者的 HTML 5 版本)。
I am using jquery to add a Facebook widget and "Like" button on a page.
I am using
$(window).load(function(){
getWidget(//loads php file containing widget code)
});
$(window).load(function(){
getButton(//loads php file containing like button code)
});
The problem is, either widget loads up or either like button but not both. Sometimes they show up together.
I tried adding some delay between the two, but it doesnt work as expected. Is it that once widget loads up you cannot load like button after that? (i am using HTML 5 versions of both).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 文件中有什么代码?您不想确保没有两次加载 Facebook javascript 文件。
What code is in the PHP file? You wan't to make sure you aren't loading the Facebook javascript file twice.