js执行跳转url,兼容所有浏览器

function doLocation(url) {

    var a = document.createElement("a");

    if (!a.click)

    {

        window.location = url;

        return;

    }

    a.setAttribute("href", url);

    a.style.display = "none";

    document.body.appendChild(a);

    a.click();

}

你可能感兴趣的:(js执行跳转url,兼容所有浏览器)