获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
[图片][图片][图片]
index.js不起作用,该怎么调整?wxml <view class="title">hello {{wording}}!</view> <image src="../../image/IMG..jpg" mode="widthFix"/> <button bindtap="onclick">点击</button> wxss: /**index.wxss**/ page { text-align: center; } .title{color:red} .foot{color:black} js //index.js //获取应用实例 const app = getApp() page({ data:{ wording:'girl' }, onclick: function(){ this.setData({ wording:'boy' }) } })
07-14