mui中a标签跳转问题

出自:https://blog.csdn.net/u013735544/article/details/71042232

最近在看mui时,遇到<a></a>标签跳转不成功,下面给出了一些解决方案

1.如果只是手机版,解决导航a标签不能跳转页面可以

mui('body').on('tap','a',function(){document.location.href=this.href;});

2.如果还有电脑版的话,解决导航a标签不能跳转页面就要用

mui('body').on('click','a',function(){document.location.href=this.href;});


猜你喜欢

转载自blog.csdn.net/kangkang_hacker/article/details/80804044