HTML5对input增加了一些新标签,个人觉得比较常用有效的以下几个
placeholder=“请输入” 常见用于默认提示
autofocus 自动聚焦到当前输入框
maxlength="18" minlength="3" 控制最少最多输入个数
autocomplete="off" 关闭浏览器自动记住历史输入内容,默认on
新增的type类型
type="search" 有些手机样式表现会有不同,比如圆角,有X按钮
type="email" / "number" 苹果给出的键盘类型不一样
type="tel" 苹果只给出数字的键盘
更多的类型range datatime,Time,Date,Week,Mouth