gpt4 book ai didi

javascript - 链接到 asp.net 中 javascript 提示中的另一个页面

转载 作者:行者123 更新时间:2023-11-28 09:26:08 25 4
gpt4 key购买 nike

如何在asp.net中的javascript提示中链接到另一个页面

否则我想链接另一个页面

function  a()
{
var s = prompt("hello");
if (s != 123) {
alert("enter number correctly");
return true;
}
else
return false;
}

最佳答案

您可以使用window.location.href在其他部分打开其他页面。

function  a()
{
var s = prompt("hello");
if (s != 123) {
alert("enter number correctly");
return true;
}
else
window.location.href = 'http://www.google.com';
}

关于javascript - 链接到 asp.net 中 javascript 提示中的另一个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14355572/

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