以下是我的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。
有人知道如何删除此警告,或者想办法跳过此警告吗?
感谢阅读和帮助。
答案 0 :(得分: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。