本文介绍了w3c验证器给出'文档类型不允许元素'输入'这里...'错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在使用w3c的验证器验证我的页面时出现此错误。



来源:

 < form action =form.php方法= POST > 
< input type =text/>
< / form>

有人可以告诉我为什么我可能得到这个错误吗?提前感谢!

解决方案

这个答案适用于XHTML,而不是HTML5。 b
$ b

所以做一些类似于

 < form action =form.phpmethod =post> 
< fieldset>
< input type =text/>
< / fieldset>
< / form>

可以解决您的问题。


I got this error when validating my page with w3c's validator.

Source:

<form action="form.php" method="post">
<input type="text"/>
</form>

Can someone show me why I may have gotten this error? Thanks in advance!

解决方案

This answer applies to XHTML, not HTML5.

Source - Dorward Online

So doing something like

<form action="form.php" method="post">
    <fieldset>
        <input type="text"/>
    </fieldset>
</form>

will solve your problem.

这篇关于w3c验证器给出'文档类型不允许元素'输入'这里...'错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 00:27