使用 jquery 在同一页面上的 facebook 小部件之后添加 facebook like 按钮

发布于 2024-12-05 13:49:12 字数 386 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独孤求败 2024-12-12 13:49:12

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文