gpt4 book ai didi

javascript - window.location.assign 的问题

转载 作者:行者123 更新时间:2023-11-28 06:06:39 27 4
gpt4 key购买 nike

我正在尝试创建一个表单来检查输入,看看它是否正确,然后加载一个新网页(如果正确),但我的代码不起作用,即使输入正确,也不会加载新页面正确的。我正在使用 window.location.assign 来尝试实现这一目标。

代码如下:

    <!DOCTYPE html>
<html>
<head>
<title> INDEX </title>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="style.css">

<script>
function validateForm() {
var x = document.forms["myForm"]["fname"].value;
if (x == null || x == "this") {
window.location.assign("http://www.google.com");
} else {
alert("Try again");
return false;

}
}
</script>
</head>
<body>

<div id="center">
<form name="myForm" action="demo_form.asp"
onsubmit="return validateForm()" method="post">

<p> type "this" </p>
<input type="text" name="fname">

<input type="submit" value="Submit">
</form>
</div>

</body>
</html>

最佳答案

window.location.assign 没有问题,你的代码有问题,如果你真的想让 widow.location.assign 工作,试试这个-

<div id="center">
<form name="myForm"
onsubmit="return validateForm()">

<p> type "this" </p>
<input type="text" name="fname">

<input type="button" value="Submit" onclick="validateForm()">
</form>
</div>

关于javascript - window.location.assign 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36800893/

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