gpt4 book ai didi

javascript - 自动化提交表单

转载 作者:行者123 更新时间:2023-12-03 02:08:15 25 4
gpt4 key购买 nike

为什么下面的代码不起作用?
一旦我点击提交按钮,它就会刷新页面。
我刚刚开始学习 JavaScript,所以如果您有任何建议来提高我的 JS 知识,也请随时分享。

<html>
<head>
<title>Form </title>
<script src="form.js"></script>
</head>
<body>
<form id="Form" onsubmit="return handleSubmit()">
<input id="username" type="text" name="username ">
<input id="password" type="password" name="password">
<input id="submit" type="submit" name="Login">
</form>
</body>
</html>

function handleSubmit(){
console.log("Hi");
var form = document.getElementById("Form");
console.log("va="+form.childern[0].value);
var u = form.childern[0].value;
if (form.childern[0].length==0 && isNaN(typeOf(u))==true){
alert("Enter Correct username");
} else {
console.log("username = " +u);
}
return false;
}

最佳答案

这是正确的代码哥们。只是对js做了一个小改动。

function handleSubmit(){
console.log("Hi");
var form = document.getElementById("Form");
console.log("va="+form.children[0].value);
var u = form.children[0].value;
var a=typeof u;
if (form.children[0].value.length!=0 &&isNaN(u))
{
console.log("username = " +u);
} else {
alert("Enter Correct username");

}
return false;
}
<html>
<head>
<title>Form </title>
<script src="form.js"></script>
</head>
<body>
<form id="Form" onsubmit="return handleSubmit()">
<input id="username" type="text" name="username ">
<input id="password" type="password" name="password">
<input id="submit" type="submit" name="Login">
</form>
</body>
</html>

关于javascript - 自动化提交表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49697052/

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