1.ios中input的placeholder屬性字體不居中
對placeholder設置line-height及font-size
對input設置高度
2.ios中滾動卡頓
設置-webkit-overflow-scrolling:touch;
3.微信小程序中解決ios中new Date() 時間格式不兼容
在實現日期時間對比時,時間格式為”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,'/'));
4. 微信小程序scroll-view隱藏滾動條方法
在wxss里加入以下代碼:
::-webkit-scrollbar{ width: 0; height: 0; color: transparent; }
參考原文: http://www.okeydown.com/html/2018/11-02/956.html