我试图验证我的页面,并且在表单部分遇到了一些问题。所以我创建了一个测试页面来查看发生了什么,但它仍然失败了所以我认为我可能做错了。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>Test</title>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
</head>
<body>
<form action='test.html'>
<input type='submit'>
</form>
</body>
</html>
这是我的测试页面。当我将其复制到http://validator.w3.org/check时,它会给我两个错误:
Error Line 10, Column 24: document type does not allow element "INPUT" here; missing one of "P", "H1", "H2", "H3", "H4", "H5", "H6", "PRE", "DIV", "ADDRESS" start-tag
<input type='submit'>
和
Error Line 11, Column 9: end tag for "FORM" which is not finished
</form>
即使没有提交按钮,它仍然会给我第二个错误。我陷入了这种情况发生的原因。有什么想法吗?
答案 0 :(得分:4)
您需要在Form标记内部使用某种容器标记才能进行验证。有些人使用Fieldset,但我总是将所有内容都包装在我的表格中。