开发小程序过程中采坑
断断续续更新
不完全支持ES6
到目前为止async await依旧不能用 2018年12月30日
不支持的js方法
Object.keys()
toString()
indexOf()
button
获取用户授权等高级功能,都会用到button。主要是button样式太丑,不管三七二十一,先覆盖掉默认样式:
button::after{
border:none;
}
button{
background: none;
font-size: 28rpx;
border: none;
padding: 0;
margin: 0;
box-sizing:inherit;
line-height: 1;
}
.button-hover{
background: none;
}
input{
outline:none;
border:none;
list-style: none;
}
本作品采用《CC 协议》,转载必须注明作者和本文链接