gpt4 book ai didi

javascript - 如何使用 jQuery 访问 URL?

转载 作者:IT老高 更新时间:2023-10-28 13:15:00 28 4
gpt4 key购买 nike

如何使用 jQuery 或 JavaScript 访问 URL。

<a href="javascript:void(0)"  onclick="javascript:goToURL()">Go To URL</a>

function goToURL(url){
// some code to go to url

}

我不想使用 window.location,因为我想从弹出窗口中调用此链接。

新链接也应该在弹出窗口中打开。我也不想使用 Ajax。只需在 JavaScript 中模拟 href。

最佳答案

//As an HTTP redirect (back button will not work )
window.location.replace("http://www.google.com");

//like if you click on a link (it will be saved in the session history,
//so the back button will work as expected)
window.location.href = "http://www.google.com";

关于javascript - 如何使用 jQuery 访问 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16959476/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com