gpt4 book ai didi

用于表单验证的 Javascript 无法正常运行

转载 作者:行者123 更新时间:2023-11-30 17:41:41 26 4
gpt4 key购买 nike

在我的 html 文件的头部定义了脚本,但仍然不起作用,这是因为我的表单的操作导致了一个 php 文件吗?

<html>
<head>
<script>
function validateForm()
{
var x=document.forms["myForm"]["food_name"].value;
if (x==null || x=="")
{
alert("Food name must be filled out");
return false;
}
</script>
<title> my title is going here </title>
</head>
<body>

<form name="myForm" action="http://xxxxxxxxx/~xxxxxxxx/file/phpfile.php" method="post" onsubmit="validateForm()">
<b>foodName:</b> <input type="text" name="food_name"><br>
<b>Food Type:</b> <input type="text" name="food_type"><br>
<b>Total:</b> <input type="text" name="total"><br>
<b>Available:</b> <input type="text" name="available"><br>
<input type="submit" value="Submit">
</form>
</body>
</html>

最佳答案

修复 validateForm 函数缺少的花括号 } 并将 onsubmit 更新为此

onsubmit="return validateForm()"

否则即使验证失败它也会提交表单

检查 http://jsfiddle.net/Thu69/

关于用于表单验证的 Javascript 无法正常运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20942068/

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