您是否可以获得没有值的输入?

时间:2009-03-29 23:25:36

标签: html forms input

是否允许以下​​内容?

<input type="hidden" name="field" />

3 个答案:

答案 0 :(得分:9)

在隐藏的领域很好。仅在复选框和无线电输入中需要它。永远不能使用文件输入指定它。见http://www.w3schools.com/TAGS/att_input_value.asp

答案 1 :(得分:5)

XHTML 1.1 schemavalue 强制性:

 <xs:attributeGroup name="xhtml.input.attlist">
    <xs:attributeGroup ref="xhtml.Common.attrib"/>
    <xs:attribute name="type" type="xhtml.InputType.class" default="text"/>    
    <xs:attribute name="name" type="xh11d:CDATA"/>
    <xs:attribute name="value" type="xh11d:CDATA"/>
    <xs:attribute name="checked">
      <xs:simpleType>
        <xs:restriction base="xs:NMTOKEN">
          <xs:enumeration value="checked"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="size" type="xh11d:Number"/>
    <xs:attribute name="maxlength" type="xh11d:Number"/>
    <xs:attribute name="src" type="xh11d:URI"/>
    <xs:attribute name="tabindex" type="xh11d:Number"/>    
    <xs:attribute name="accesskey" type="xh11d:Character"/>
  </xs:attributeGroup>

答案 2 :(得分:3)

是的,表单输入由您控制,以满足您的要求,只要它们格式正确且有效xhtml。

但这似乎毫无意义。