小程序26-事件绑定和事件对象
小程序中绑定事件与网页绑定事件几乎一致,只不过小程序中不能通过 on 的方式绑定事件,也没有 click 等事件,小程序中绑定事件使用 bind 方法,click 事件也需要使用 tap 事件进行代替
方法1: bind:事件名,bind 后面需要跟上冒号,冒号后面跟上事件名,例如:<view bind:tap="fnName"></view>
方法2: bind事件名,bind 后面直接跟事件名,例如:<view bindtap="fnName"></view>
事件处理函数需要写到 .js 文件中,在.js文件中需要调用小程序提供的 Page 方法 来注册小程序的页面,我们可以直接在 Page 方法中创建事件处理函数
注意:小程序中,input 输入框默认没有边框,需要自己添加样式
在app.scss文件中添加:input { border: 1px solid #cccccc; }
<!-- 第一种方式:bind:事件名 -->
<button type="primary" bind:tap="handler">绑定事件</button>
<!-- 第二种方式:bind事件名 -->
<button type="warn" bindtap="handler">绑定事件</button>
<!-- 小程序中,input 输入框默认没有边框,需要自己添加样式 -->
<input type="text" bindinput="getInputVal"/>
Page({
handler() {
console.log('绑定成功')
},
// event:事件对象
getInputVal(event) {
console.log(event)
console.log(event.detail.value)
}
})