微信小程序函数传参

.wxml文件




.js文件
const app = getApp()

Page({
  data: {
    text:"这是text"
  },
  onLoad() {
    
  },
  test(e){
    console.log(e.currentTarget.dataset.content)
  }
})

微信小程序函数传参_第1张图片

 

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