4

这是我的 HTML 页面的开头:

1. <?xml version="1.0" encoding="utf-8" ?>
2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3. <html xmlns="http://www.w3.org/1999/xhtml" lang="fr">
4.     (...)
5. </html>

不管有没有这个<?xml ... ?>部分,Eclipse 在第3 行给我返回一个警告事件

未定义的属性名称 (xmlns)。

这个xmlns属性是正确验证所必需的,所以我不明白为什么 Eclipse 返回一个警告。

此外,我将Eclipse Indigo 3.7.2与 Eclipse 数据库中的最后一个 PHP Developer Tool 一起使用。

有人知道如何删除此警告,或找到跳过此警告的方法吗?

感谢阅读和帮助。

4

1 回答 1

1

这里有类似案例的错误:https ://bugs.eclipse.org/bugs/show_bug.cgi?id=313859

<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr">
<head>
<title>Title of the document</title>
</head>

<body>
<div>The content of the document.</div>
</body>

</html> 

应该验证。在 Eclipse Juno 和此处验证良好:http: //validator.w3.org

于 2013-07-26T20:34:42.730 回答