gpt4 book ai didi

javascript - 在新窗口中打开 window.location.href 位置

转载 作者:行者123 更新时间:2023-11-28 14:15:33 26 4
gpt4 key购买 nike

如何在新窗口中打开 window.location.href 中指定的 URL?

function callThisFunction1() {
var dropdown = document.getElementById("lookup1");
var unit = dropdown.options[dropdown.selectedIndex].value;
if (unit == "M") {
window.location.href='site.com'+document.getElementById("Var").value;
}
else if (unit == "S") {
window.location.href='site.com'+document.getElementById("Var1").value;
}
}

最佳答案

这应该可以解决问题。在这里,我假设您想要在新选项卡中找到当前 location.href。如果您想要其他网址,也可以打开它。只需传递 window.open 中的值即可。

<!DOCTYPE html>
<html>
<body>

<p>Should open href in new window</p>

<button onclick="openTab()">Click here</button>

<script>
function openTab() {
window.open(window.location.href);
}
</script>

</body>
</html>

关于javascript - 在新窗口中打开 window.location.href 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57662979/

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