跳转无效location.href

原因是 a标签的href跳转会执行在window.location.href之前执行

解决办法:在js函数中加上

window.event.returnValue=false

问题展示:

html:

js

    $('.link1').click(function() {
        //在js函数中加上这行代码
        window.event.returnValue=false;
        location.href = "https://www.baidu.com/";
    })

其他原因可参考文章:window.location.href跳转无效

你可能感兴趣的:(JavaScript)