去除移动端苹果手机(ios)的input默认样式与input禁止键盘出现的方式

样式:

input{-webkit-appearance: none;}

在iPhone plus点击input框出生日期时会出现如下图:

 

 为了去掉下面那条苹果自带的,可以这样处理:在HTML中的input标签内部添加属性:

 

 

<input type="text"  readonly="readonly" onfocus='this.blur();' >

 

posted @ 2019-12-05 17:36  前端HL  阅读(1136)  评论(0编辑  收藏  举报