小程序怎么用JS更改CSS属性?
setData…
display不支持啊
<view style=“width:{{width}};height:{{height}};background-color:{{bgcolor}}”></view>
JS代码:
Page({
data: {
width:100,
heitht:100,
bgcolor:“red”
}
})
或许这样可以,试试!