码迷,mamicode.com
首页 > 微信 > 详细

微信小程序:bindtap方法传参

时间:2017-07-14 13:34:05      阅读:547      评论:0      收藏:0      [点我收藏+]

标签:webkit   tap   ref   ndt   pre   his   微信   调用   href   

1、wxml

<view bindtap="pay_again" data-name="{{orderList.jid}}" data-fee="{{orderList.act_fee}}" data-mobile="{{orderList.p_phone}}" data-act="{{orderList.act_name}}" class="operating f_r webkit-box" style="line-height:30px;"> 
          <a href="" class="pay bg_red">继续支付</a> 
      </view>

2、js

  // 再次发起支付请求,调用后台PHP
  pay_again:function(e){
    var that = this;
    that.setData({
      jid: e.currentTarget.dataset.name,
      act_name: e.currentTarget.dataset.act,
      act_fee: e.currentTarget.dataset.fee,
      mobile: e.currentTarget.dataset.mobile
    })
    console.log(‘活动订单id = ‘ + that.data.mobile);
  }

 

微信小程序:bindtap方法传参

标签:webkit   tap   ref   ndt   pre   his   微信   调用   href   

原文地址:http://www.cnblogs.com/xuzhengzong/p/7169503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!