1. 程式人生 > >【小程式】獲取自定義屬性

【小程式】獲取自定義屬性

<view bindtap="getDataAttr" data-postId="{{postId}}" data-id="id"  class="div">  
</view>
getDataAttr:function(e){
    console.log(e.currentTarget.dataset.id)
    console.log(e.currentTarget.dataset.postId)
}