关于处理小程序在IOS系统中的兼容问题
关于处理小程序在IOS系统中的兼容问题
·
- 微信小程序中解决iOS中new Date() 时间格式不兼容
根据后台返回的时间格式转换时,后台返回了时间格式为”2023-02-17 11:12:11”,然后利用new Date() 转换时,ios中无法展示,安卓中显示正常,需要将时间格式格式转换为"2023/02/17 11:12:11"
- iOS中input的placeholder属性字体不居中
对placeholder设置line-height及font-size
对input设置高度
- iOS中滚动卡顿
设置-webkit-overflow-scrolling:touch;
- 微信小程序scroll-view隐藏滚动条方法
::-webkit-scrollbar{
width: 0;
height: 0;
color: transparent;
}
更多推荐
已为社区贡献1条内容
所有评论(0)