一、input控件的用法属性
属性 | 属性值 | 描述 |
---|---|---|
type | text | 单行文本输入框 |
type | password | 密码输入框 |
type | radio | 单选按钮 |
type | checkbox | 复选框 |
type | button | 普通按钮 |
type | submit | 提交按钮 |
type | reset | 重置按钮 |
name | 自定义 | 控件名称 |
value | 自定义 | input控件中的默认文本项 |
size | 正整数 | 控件的宽度 |
checked | checked | 定义控件的默认选项 |
maxlength | 正整数 | 控件允许输入最大字符数 |
input属性的用法演示
代码:
<body>
<form action="#" method="post" name="list">
<input type="text" value="赵欣" maxlength="6"/><br>
<input type="password" maxlength="20"/><br>
<!--账户与密码框-->
<input type="radio" name="sex" id="man" ><label for="man"