Wml-input-tag

提供:Dev Guides
移動先:案内検索

WML <input>タグ

<input/>要素は入力フィールドを作成するために使用され、入力フィールドはユーザーから英数字データを取得するために使用されます。

属性:

この要素は、次の属性をサポートしています。

Attribute Value Description
name text The name of the variable that is set with the result of the user’s input
maxlength number Sets the maximum number of characters the user can enter in the field
emptyok
  • true *偽
Sets whether the user can leave the input field blank or not. Default is "false"
format A a N X x M m* f nf

Sets the data format for the input field. Default is "*M".

A =大文字のアルファベットまたは句読点文字a =小文字のアルファベットまたは句読点文字N =数字X =大文字x =小文字M =すべての文字m =すべての文字* f =任意の数の文字。 f_を上記の文字のいずれかに置き換えて、ユーザーが入力できる文字を指定します_nf = _n_を1〜9の数字に置き換えて、ユーザーが入力できる文字数を指定します。 _f_を上記のいずれかの文字に置き換えて、ユーザーが入力できる文字を指定します

size number Sets the width of the input field
tabindex number Sets the tabbing position for the select element
title text Sets a title for the list
type
  • text
  • パスワード
Indicates the type of the input field. The default value is "text". Password field is used to take password for authentication purpose.
value text Sets the default value of the variable in the "name" attribute
xml:lang language_code Sets the language used in the element
class class data Sets a class name for the element.
id element ID A unique ID for the element.

例:

以下は、この要素の使用法を示す例です。

<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN"
"http://www.wapforum.org/DTD/wml12.dtd">

<wml>

<card title="Input Fields">
<p> Enter Following Information:<br/>
 Name: <input name="name" size="12"/>
 Age :  <input name="age" size="12" format="*N"/>
 Sex :  <input name="sex" size="12"/>
</p>
</card>

</wml>

これにより、必要な情報を入力するための次の画面が表示されます。

WAP例23