项目是vue写的(移动端)
<div class="mui-scroll">
<a :href="bannerinfo.activity_url" class="icon play">
链接点击没反应(点元素的最左边才会跳转)
</a>
<a :href="‘tel:‘+item.ac_mobile">
{{item.ac_mobile}} 电话号码点击没反应(点元素的最左边才会跳转)
</a>
</div>应该是mui禁止了一些事件的浏览器默认行为,解决办法:阻止touchStart事件冒泡,下面是vue的写法
<a :href="bannerinfo.activity_url" class="icon play" @touchStart.stop>
</a>
原文地址:https://www.cnblogs.com/sgqwjr/p/10244179.html
时间: 2024-10-08 12:52:42