如何在jQuery Mobile中设置100%宽度的输入类型日期

How to set input type date with 100% width in jQuery Mobile

本文关键字:输入 日期 类型 100% 设置 jQuery Mobile      更新时间:2023-09-26

我正在使用jQuery Mobile 1.1.1开发一个web应用程序,我对使用宽度为100%的<input type="date" />很感兴趣,但在iOS4上查看页面时有一个缺口(应该有箭头的空间被切掉了)。

有人能解决这个问题吗?

解决这个问题的一个可能的解决方案是添加以下CSS来覆盖默认浏览器CSS:

input::-webkit-outer-spin-button,  
input::-webkit-inner-spin-button {  
    -webkit-appearance: none;  
    margin: 0;  
}