微信小程序【 获取wx:for列表中点击行的信息 】

  • Post author:
  • Post category:小程序



【参考:】


https://www.cnblogs.com/androidxufeng/p/9342105.html


【解决:】



wxml:

<view wx:for="{{listone}}" wx:key="index" bindtap="listgetone" data-item="{{item}}" >
</view>


js:

listgetone(item){
	console.log(item)
    console.log(item.currentTarget.dataset.item)
},



版权声明:本文为weixin_43263994原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。