stumbleupon的徽章正在打破xhtml验证错误。是否有任何方法可以使用javascript或其他方式进行验证?
su给出以下行以显示徽章:
<script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script>
我接到两个警告:
line 5 column 1 - Warning: <html> proprietary attribute "xmlns:fb"
line 40 column 2 - Warning: <span> ID "__su_server_time__" uses XML ID syntax
答案 0 :(得分:1)
请注意,警告不是错误。
您提供的代码在其他有效页面上验证,但使用W3C Validator
的XHTML严格文档类型除外如果这是您的doctype,则需要按照说明添加type
属性:
<script src="http://www.stumbleupon.com/hostedbadge.php?s=5" type="text/javascript"></script>
您需要注意doctype,因为这些是用于验证的内容。因此,将此代码粘贴到任何html 中都不会导致验证错误。