将 fb:like 更改为 div 元素,可能吗?
可以将其替换为
<fb:like layout="box_count" show_faces="false" font=""></fb:like>
Can this be replacd into <div class="facebook...
, i do not want to use facebook prefix. i want to use div tag as it is more standard html
<fb:like layout="box_count" show_faces="false" font=""></fb:like>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的。
旁注:
fb:like 在某种程度上实际上是标准的 html。 fb: 是一个命名空间,类似的是 fb 命名空间中的元素。这与默认 html 命名空间中的 div 和元素相同。所以你实际上使用的是标准的html。
当您使用 Like 按钮访问页面时,您将看到 html 标记中声明的命名空间。 fb 命名空间与默认 html 命名空间并排显示:
This is not possible.
Side note:
fb:like is actually standard html in a way. The fb: is a namespace and the like is an element in the fb namespace. This is just the same as a div being and element in the default html namespace. So you are actually using standard html.
You'll see the namespace declared in the html tag when you visit the page with the like button. The fb namespace appears along side the default html namespace:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" ... />