插件窝 干货文章 移动端a标签无法跳转

移动端a标签无法跳转

html a标签 javascript. js 681    来源:插件窝    2019-12-13
var href=document.getElementsByTagName('a');
    for(var i=0;i<href.length;i++){
        href[i].ontouchend=function(){
        window.location.href=this.getAttribute("href");
    }
};

直接给这段js再代码底部即可