作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个 JS 代码:
function validateForm() {
var x=document.forms["myForm"]["name"].value;
if (x==null || x=="")
{
alert("Name must be filled out");
return false;
}
var y=document.forms["myForm"]["password"].value;
if (y==null || y=="") {
alert("Password name must be filled out");
return false;
}
}
和这个 HTML:
<form action="page.php" method="post">
Name*: <input type="text" name="name"> <br>
Password*: <input type="password" name="password"><br>
Email: <input type="text" name="email"><br>
<input type="submit" value="Submit">
</form>
如何使我的 javascript 代码适用于输入 class="required"
最佳答案
我修复了您的 html 代码,并在进入 PHP 页面之前进行了验证
您的表单中有一个错误 - 您忘记添加表单名称“myform”,因此在我添加此表单之前它无法获取值,因为 javascript 不知道从哪里获取值,并且我添加了一个名为“good”的值“如果它是 false,则其他所有内容都是 false,并且它不会将值返回到 php 服务器
希望这有帮助
<html>
<head>
<script type="text/javascript">
function validate_Form() {
var x=document.forms["myForm"]["name"].value;
var good = new Boolean(true);
if (x==null || x=="")
{
alert("Name must be filled out");
good = false;
}
var y=document.forms["myForm"]["password"].value;
if (y==null || y=="")
{
alert("Password name must be filled out");
good = false;
}
return good
}
</script>
</head>
<body>
<form name="myForm" action="page.php" method="post" onsubmit="return validate_Form()">
Name*: <input type="text" name="name"> <br>
Password*: <input type="password" name="password"><br>
Email: <input type="text" name="email"><br>
<input type="submit" value="Submit">
</form>
</body>
关于javascript - HTML 表单必填字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24597289/
在使用网站、加载内容等一段时间后,此消息显示“Fill:SelectCommand.Connection 属性尚未初始化”!我认为这是因为 sql 连接,但不确定......我想知道我能做些什么来防止
我是一名优秀的程序员,十分优秀!