早睡早起,方能养生
Sleep early rise early, way to keep healthy

HTML中input标签maxlength无效的原因

super
2021-11-03 20:08
views 3593

HTML INPUT标签 maxlength属性不起作用

 

解决方法:

 

检查input type类型是否为以下几种:

 

  1. 1. text
<input type="text" />

 

2. password

<input type="password" />

 

3. search

<input type="search" />

 

4. tel

<input type="tel" />

 

5. url

<input type="url" />

 

目前maxlength仅支持以上几种类型,number等类型不支持使用maxlength

 

文档详见:<input>:输入(表单输入)元素



分享
0 条讨论
top