首页 > 代码库 > input标签

input标签

1.input  type="text" 

disabled: 设置或返回文本域是否应被禁用。

maxLength 设置或返回文本域中的最大字符数。

name 设置或返回文本域的名称。

readonly 设置或返回文本域是否应是只读的。

size 设置或返回文本域的尺寸。

value 设置或返回文本域的 value 属性的值。

禁用:<input type="text" value="http://www.mamicode.com/不可修改" disabled /> 或 只读:<input type="text" value="http://www.mamicode.com/不可修改"  readonly/>

2.input type="password"

密码文本框创建:改变密码域的掩码样式、设置禁止复制、剪切、粘贴密码

代码:

<input name="password" type="password" id="password" size="20" style="font-family:‘黑体‘" onCopy="return false" onCut="return false" onPaste="return false" maxlength="60"/>

 

input标签