DOMDocument 和 FBML/Google +按钮不起作用
好吧,我遇到了一些问题,我有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以解决这两个问题。
对于 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>