官方文档说:hover-stop-propagation 指定是否阻止本节点的祖先节点出现点击态
但是在 button 中,不管是否写 hover-stop-propagation='true' 或者 hover-stop-propagation='{{ true }}',都无法阻止祖先节点穿透,
所以,需要在 button 外部加个阻止穿透的节点view:<view catchtap='()=>{return}'> <button plain="true" open-type="share" class="shareBtn" data-title="{{ item.a_shortTitle }}" data-abstract="{{ item.a_abstract }}" data-image="{{ item.a_picBig }}" hover-stop-propagation="{{true}}"> <image class="shareImg" src="../../../images/shareImg.png" mode="aspectFill" /> </button> </view>
标签:hover,微信,stop,穿透,propagation,点击,按钮,节点 From: https://www.cnblogs.com/moguzi12345/p/17317630.html