readonly在安卓和ios设备的兼容问题

<input readonly />

 android上面正常,ios依然会有光标(同样不能输入),解决办法

<input readonly unselectable='on' onfocus="this.blur();" />

 至于为什么不用  disabled属性,原因是会阻止input内容的提交

posted @ 2017-07-14 16:06  佘楼  阅读(378)  评论(0编辑  收藏  举报