1. 修改data中的数据
this.setData({ msg:'Sakura' })
控制台输出data中的数据
console.log(this.data.msg)
2. 绑定事件 bindxxx 是不阻止冒泡事件绑定 catchxxx 是阻止冒泡事件绑定
<!-- tap是点击事件 --> <view class="goStudy" bindtap="clickParent"> <text bindtap="clickChild">hello world</text> </view>
<!-- tap是点击事件 --> <view class="goStudy" catchtap="clickParent"> <text catchtap="clickChild">hello world</text> </view>
事件函数写在js中,与data平级
// 事件回调函数 clickParent(){ console.log('clickParent') }, clickChild(){ console.log('clickChild') },