对placeholder设置line-height及font-size
对input设置高度
设置-webkit-overflow-scrolling:touch;
在实现日期时间对比时,时间格式为”2018-11-12 11:12:11”,然后利用new Date() 转换时,ios中无法兼容,安卓中显示正常
原因:IOS支持的日期类型为2018/11/12,所以把"-"替换成"/",则IOS和安卓都可兼容
let time = '2018-12-10 11:11:11'; let temporaryTime = new Date(time.replace(/-/g,'/'));
在wxss里加入以下代码:
::-webkit-scrollbar{ width: 0; height: 0; color: transparent; }