2

我试图验证我的网站,但出现以下错误

没有属性“属性”

 <meta property="og:title" content="Free Sms" />

没有属性“allowTransparency”

…w:hidden; width:450px; height:21px;" allowTransparency="true">Facebook</iframe>

没有属性“占位符”

…"search" type="text" placeholder="SEARCH" value="" class="searchInp …

首先我的代码有这个,我得到 13 个错误。

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

将代码更改为此可以减少我的错误。但我得到了 3 个错误。为什么?任何指南如何解决这个问题?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="https://www.facebook.com/2008/fbml"
      xml:lang="en" lang="en"> 

完全的

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="https://www.facebook.com/2008/fbml"
      xml:lang="en" lang="en"> 
<head> 
    <title>Welcome to mysite</title>
                   <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
                   <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> 
                   <meta name="keywords" content="Social, Programming" />
                   <meta name="description" content="Share Ideas and become the best" />
                   <meta http-equiv="Content-Language" content="en" />
                   <meta name="robots" content="*" />
                   <meta name="document-type" content="text" />
                   <meta name="googlebot" content="NOODP" />
                   <meta name="slurp" content="NOYDIR" />
                   <meta name="msnbot" content="NOODP" />
                   <meta name="Generator" content="snippet" />
                   <meta property="og:title" content="Welcome to mysite" />
                   <meta property="og:type" content="website" />
                   <meta property="og:url" content="" />
                   <meta property="og:description" content="Share Ideas and become the best" />
                   <meta property="fb:app_id" content="" />
                   <meta property="og:image" content="http://mysite.com/images/fbicon.png" />
4

1 回答 1

10

您提到的属性根本不是 XHTML 1.0 过渡的一部分,因此验证器必须将它们报告为错误。请记住,错误的概念在这里是相对的:它意味着文档不符合它声称符合的文档类型定义(通过在doctype声明中引用文档类型定义)。

property属性也不是 HTML5 CR 的一部分,但像http://validator.nu这样的验证器使用“用于 HTML5 + SVG 1.1 + MathML 3.0 + RDFa Lite 1.1 的模式”,其中 RDFa 部分允许property.

例如,如果您的标记是 XHTML 1.0 过渡和 HTML5 的混合体,请放松。这种混合适用于浏览器和其他相关软件,除了需要挑剔的验证器。只需使用doctype与您拥有的标记最对应的标记,然后手动检查错误消息。如果您在使用 XHTML 1.0 Transitional 时只收到 3 条错误消息,请继续使用它,直到您在检查 HTML5 时收到更少的错误消息。

于 2013-08-26T18:00:25.843 回答