DOMDocument 和 FBML/Google +按钮不起作用

发布于 2024-12-19 01:35:27 字数 283 浏览 4 评论 0原文

好吧,我遇到了一些问题,我有一个使用 DOMDocument 来显示一些内容的应用程序,但它删除了 FBML 和显示 Google +1 按钮所需的一些代码。

例如,Facebook 的 Like 按钮是 ,它会从字符串中删除 fb:。 Google 的 +1 按钮类似于 ,但它正在删除 g:

有什么办法让它不删除那部分代码吗?

Well I'm having a bit of an issue, I have an application that uses DOMDocument to display some content but it is removing some code that is needed for FBML and a Google +1 button to display.

For example, Facebook's like button is <fb:like>, it is removing fb: from the string. Google's +1 button is like <g:plusone> and it's removing g:.

Is there any way to make it not remove that part of the code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你好,陌生人 2024-12-26 01:35:27

您可以解决这两个问题。

对于 Facebook Like 按钮,您将需要使用 HTML5 版本。请参阅:https://developers.facebook.com/docs/reference/plugins/like/

例如:

< /code>

通过 Google 的 Plus 1,您可以使用HTML5 版本也是如此。请参阅:https://developers.google.com/+/plugins/+1button/

ex:

;

You can solve both issues.

With Facebook like button, you will want to use the HTML5 version. See: https://developers.facebook.com/docs/reference/plugins/like/

ex: <div class="fb-like" data-send="true" data-width="450" data-show-faces="true"></div>

With Google's Plus one you can use the HTML5 version as well. See: https://developers.google.com/+/plugins/+1button/

ex: <div class="g-plusone" data-size="tall" ... ></div>

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