option selector |
QName | Type | Fixed | Default | Use | Inheritable | Annotation | |
---|---|---|---|---|---|---|---|
class | xs:NMTOKENS | optional | |||||
dir | restriction of xs:token | optional | |||||
disabled | restriction of xs:token | optional | |||||
id | xs:ID | optional | |||||
lang | LanguageCode | optional | |||||
multiple | restriction of xs:token | optional | |||||
name | optional | ||||||
onblur | Script | optional | |||||
onchange | Script | optional | |||||
onclick | Script | optional | |||||
ondblclick | Script | optional | |||||
onfocus | Script | optional | |||||
onkeydown | Script | optional | |||||
onkeypress | Script | optional | |||||
onkeyup | Script | optional | |||||
onmousedown | Script | optional | |||||
onmousemove | Script | optional | |||||
onmouseout | Script | optional | |||||
onmouseover | Script | optional | |||||
onmouseup | Script | optional | |||||
size | Number | optional | |||||
style | StyleSheet | optional | |||||
tabindex | tabindexNumber | optional | |||||
title | Text | optional | |||||
xml:lang | union of(xs:language, restriction of xs:string) | optional |
|
Element Group | inline.forms |
<xs:element name="select"> <xs:annotation> <xs:documentation>option selector</xs:documentation> </xs:annotation> <xs:complexType> <xs:choice maxOccurs="unbounded"> <xs:element ref="optgroup"/> <xs:element ref="option"/> </xs:choice> <xs:attributeGroup ref="attrs"/> <xs:attribute name="name"/> <xs:attribute name="size" type="Number"/> <xs:attribute name="multiple"> <xs:simpleType> <xs:restriction base="xs:token"> <xs:enumeration value="multiple"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="disabled"> <xs:simpleType> <xs:restriction base="xs:token"> <xs:enumeration value="disabled"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="tabindex" type="tabindexNumber"/> <xs:attribute name="onfocus" type="Script"/> <xs:attribute name="onblur" type="Script"/> <xs:attribute name="onchange" type="Script"/> </xs:complexType> </xs:element> |