微信小程序(三十六)事件传参

注释很详细,直接上代码

上一篇

新增内容:
1.传参步骤
2.传参接收解构步骤

源码:

index.wxml

<button type="primary" bind:tap="onclick" mark:index="{{0}}" mark:remb="{{1}}" class="But">
    点击
button>

index.wxss

.But{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50%;
}

index.js

Page({
    onclick(e)
    {
        //解构一下
        const {index,remb}=e.mark
        
        console.log(index)
        console.log(remb)
    }
})

效果演示:

微信小程序(三十六)事件传参_第1张图片

你可能感兴趣的:(微信小程序,微信小程序,小程序)