小程序基础
Posted wong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序基础相关的知识,希望对你有一定的参考价值。
wxml:
<text class=‘title‘>hello {{wording}}..</text><!--{{调用js变量}}--> <image class=‘logo_img‘ mode=‘widthFix‘ src=‘../../images/logo.png‘></image> <button bindtap=‘onClick‘>点击我</button><!--bindtap点击事件-->
wxss:
/**index.wxss**/ Page{ text-align: center} .title{ color: red;} .logo_img{ margin-top: 100rpx;}
js:
//index.js //获取应用实例 const app = getApp() Page({ data: { wording:‘girl‘//变量内文本内容 }, //点击切换文本内容事件 onClick: function(){ this.setData({ wording:‘boy‘ }) } })
以上是关于小程序基础的主要内容,如果未能解决你的问题,请参考以下文章