#密码框
Posted siemens
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#密码框相关的知识,希望对你有一定的参考价值。
写密码框的方式和写单行文本框的方式差不多
<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等都是可写可不写,根据你自己的需要来选择
以上是关于#密码框的主要内容,如果未能解决你的问题,请参考以下文章
asp.net中,当密码框textbox=“password”时,怎么能够在密码输入框中显示提示文字,后台代码怎么写?
Express实战 - 应用案例- realworld-API - 路由设计 - mongoose - 数据验证 - 密码加密 - 登录接口 - 身份认证 - token - 增删改查API(代码片段