在小程序添加點擊按鈕實現修改文字大小
index.wxml文件
<view class="view" style="font-size:{{fontSize}}pt"></view>
<button class="btn" type="default" bindtap="shriFontSize">點擊字體變小</button>
index.js文件
Page({
data:{
fontSize:10
},
shrinkFontSize(){
this.setData({
fontSize:this.data.fontSize-1
})
}
})
在事件響應函數中使用了this.setData修改了fontSize為this.data.fontSize-1,進而動態修改了index.wxml文件中
style="font-size:{{fontSize}}pt"的字體大小。