收藏
回答

view中包含view和image,点view正常,点image参数不对?

view中包含view和image,点view正常,点image参数不对

<view class="userinfo2" bindtap="showtip" id="help1">
  <view class="subContainer2">说明信息1</view>
  <image style="width:2%;margin-right:10%;" mode="aspectFit" src="toLeft.png"></image>
</view>
<view wx:if="{{help1}}" style="display: flex;flex-direction: column;align-items: center;">
  <view style="width:90%;">说明信息1说明信息1说明信息1说明信息1说明信息1</view>
</view>
 
<view class="userinfo2" bindtap="showtip" id="help2">
  <view class="subContainer2">说明信息2</view>
  <image style="width:2%;margin-right:10%;" mode="aspectFit" src="toLeft.png"></image>
</view>
<view wx:if="{{help2}}" style="display: flex;flex-direction: column;align-items: center;">
  <view style="width:90%;">说明信息2说明信息2说明信息2说明信息2说明信息2</view>
</view>
 
<view class="userinfo2" bindtap="showtip" id="help3">
  <view class="subContainer2">说明信息3</view>
  <image style="width:2%;margin-right:10%;" mode="aspectFit" src="toLeft.png"></image>
</view>
<view wx:if="{{help3}}" style="display: flex;flex-direction: column;align-items: center;">
  <view style="width:90%;">说明信息3说明信息3说明信息3说明信息3说明信息3</view>
</view>
 
<view class="userinfo2" bindtap="showtip" id="help4">
  <view class="subContainer2">说明信息4</view>
  <image style="width:2%;margin-right:10%;" mode="aspectFit" src="toLeft.png"></image>
</view>
<view wx:if="{{help4}}" style="display: flex;flex-direction: column;align-items: center;">
  <view style="width:90%;">说明信息4说明信息4说明信息4说明信息4说明信息4</view>
</view>

如果点 说明信息1 中的image console.log 记录的是

currentTarget:
dataset: {}
id: "help3"
offsetLeft: 0
offsetTop: 196


代码分享:

https://developers.weixin.qq.com/s/1lR8fKmE7RcH

回答关注问题邀请回答
收藏

2 个回答

  • 张军@三,四行星
    张军@三,四行星
    2019-11-09

    正常了,谢谢大神

    2019-11-09
    有用
    回复
  • 金煜峰
    金煜峰
    2019-11-09


    你的图片超高了,说明信息1那里其实是三张图片的叠加,说明信息3的在最上面,所以触发的是说明信息3(image有默认的高度)

    把mode设置成widthFix就可以了

    2019-11-09
    有用
    回复
登录 后发表内容
问题标签