标签:username 创建 需要 name 密码 方式 inpu 特性 其他
写密码框的方式和写单行文本框的方式差不多
<label>登录名:</label>
<input type="text" name="username" maxlength="30"/>
<br />
<label>密码:</label>
<input type="password" name="password" maxlength="30"/>
type = "password" 当type特性的值为password时
<input>
元素会创建一个用起来和text文本框非常类似的文本框
唯一的不同之处是密码框里的字符被掩盖了
name特性表明密码框的名称
除了type之外的其他的属性,如maxlength,name等都是可写可不写,根据你自己的需要来选择
标签:username 创建 需要 name 密码 方式 inpu 特性 其他
原文地址:https://www.cnblogs.com/Siemens/p/13992435.html