为什么不xhtml验证
我不明白为什么这个表格不会被验证。 它声称我没有关闭input
标签,并且我有一个未打开的闭合input
标签。
有问题的页面是http://squareownz.org/dunkyp/index.py
http://validator.w3.org/check?uri=http%3A%2F%2Fsquareownz.org%2Fdunkyp%2Findex.py
但是,该页面不同意代码是有效的。
您应该使用<input />
而不是<input></input>
您不能关闭输入标签,您需要自行关闭它们:
<input type="text" name="title" value=""></input>
- >
<input type="text" name="title" value="" />
尝试改变你的输入标签
<input />
instead of
<input></input>
我认为就是这样
编辑:该死的人在这里反应很快,我看到我的解决方案已被建议。
链接地址: http://www.djcxy.com/p/88835.html