对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中无法展示,安卓中显示正常
let time = '2018-12-10 11:11:11'; let temporaryTime1 = new Date(time); this.setData({ timeRemain1: temporaryTime1, }) /* 利用正则表达式替换时间中的”-”为”/”即可 */ let time = '2018-12-10 11:11:11'; let temporaryTime = new Date(time.replace(/-/g,'/')); let temporaryTime1 = new Date(time); this.setData({ timeRemain: temporaryTime, timeRemain1: temporaryTime1, })在wxss里加入以下代码:
::-webkit-scrollbar{ width: 0; height: 0; color: transparent; }
往期好文推荐:
判断ios和Android及PC端
实现文字的省略号
纯css实现瀑布流(multi-column多列及flex布局)