bug: 修改button宽度,不管用。把app.json里 "style": "v2" 去掉就行了。
display: inline-block添加此属性,可使text组件设置宽度有效
.father .son { // 父的子
width:50rpx;
}
.father .son image { // 父的子 子的image
width:50rpx;
}
.father, .son { // 父和子!!
width:50rpx;
}
本地存储 setStorageSync getStorageSync
微信小程序所有组件初始化样式box-sizing,在app.wxss中添加
取值 event.currentTarget.dataset.index
data-name="{{item.name}}",name是自定义字段,js取值时: e.currentTarget.dataset.name。
组件之间传递信息,自定义方法时,子控件赋值e.currentTarget.dataset.name;父控件取值 e.detail.data.index。
uniapp
- position:static (默认值)
- css样式中 position:static (默认值)其他几种样式图文解释 absolute、relative、fixed
- position中absolute和fixed的区别
网友评论