当前位置: 首页 > 网络学院 > XML相关教程 > XForms > XForms 选择控件
The user interface of XForms uses XForms controls.
XForms 用户界面使用 XForms 控件。
The select1 control is used for selecting one item from a list of items:
select1 控件用于从一个项目列表中选取一个项目:
<select1 ref="status"> |
In the example above, the user can choose one of to values, Male or Female. The data stored in the XForms instance (XML document) will be M or F.
在上面的例子中,用户可在两个值中选择其中之一,Male 或者 Female。存储在 XForms 实例(XML 文档)中的数据将是 M 或 F。
Try it yourself
自己试试吧
The select control is used for selecting items (one or many) from a list of items:
Select 控件用于从一个项目列表中选取项目(一个或多个):
<select ref="languages"> |
In the example above, the user can choose one or many of the values.
在上述例子中,用户可以选择一个或多个值。
The range control is used for selecting a value from a range of values:
Range 控件用于从值的一个范围内选取值:
<range ref="length" start="0" end="100" step="5"> |
In the example above, the user can choose a value between 0 and 100 in steps of 5.
在上面的例子中,用户可按照步长 5 选择介于 0 到 100 之间的某个值。