e.target
拿的是点击的对象的属性
e.currentTarget
则是拿 bintap/catchtap
所在的对象的属性~,点击里面的元素一样能拿到属性值
<view class='a-child' data-tid='{{child.ID}}' bindtap='selectChild'>
<image class='avatar' src='../../images/localImages/default_user.png'></image>
</view>
selectChild: function(e) {
//获取ID
var tid = e.currentTarget.dataset.tid
console.log('tid: ' + tid)
},