我从http://validator.w3.org收到验证错误“没有属性href”

时间:2013-10-04 04:23:39

标签: html

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 <fb:like href="https://www.facebook.com/pages/North-Carolina-Military-Foundation/101762603238869" send="true" layout="button_count" width="auto" show_faces="false" font=""></fb:like>

我从http://validator.w3.org收到验证错误,因为“没有属性”href,send,latout,width,show_faces和font“?有什么解决方案吗?

2 个答案:

答案 0 :(得分:0)

如果你想在你的html头上找到一个“赞”按钮     https://developers.facebook.com/docs/reference/plugins/like/

填写表单,它将为您生成正确的代码。

答案 1 :(得分:0)

尝试声明名称空间。

e.g。

<xhtml xmlns:fb="fb:http://ogp.me/ns/fb#" >
<body>
 <fb:like href="https://www.facebook.com/pages/North-Carolina-Military-Foundation/101762603238869" send="true" layout="button_count" width="auto" show_faces="false" font=""></fb:like>
</body>
</xhtml>