我有一个表格,必须输入哪个区域,然后必须从下拉列表中选择其单位。我正在使用javascript验证,但它无法正常工作。这是我的代码:
function check_admin_post_property()
{
var area=document.post_property.property_area.value;
if(area != "")
{
if(document.post_property.area_unit.value == "Select")
{
alert("Area unit must be selected");
document.post_property.property_area.focus();
return false;
}
}
}
第一行声明一个变量并获取最终用户输入的值。第二行检查字段是否不等于空,表示它有值。第四行检查下拉列表中的值是否等于Select,因为用户必须选择适当的区域单位。如果是选择验证失败。 基本上我想要做的是进入区域不是强制性的,但如果是强制性的,则必须附带一个单元。
这是我的标记:
<form name="post_property" action="<?php $_SERVER['PHP_SELF'] ?>" method="post" enctype="multipart/form-data">
<table>
<tr><td>Other fields</td></tr>
<tr>
<td>Property area:</td>
<td><input type="text" name="property_area" style="border:1px solid red;"><span style="color:red">*</span</td>
</tr>
<tr>
<td>Area unit:</td>
<td>
<select name="area_unit">
<option value="Select">Select</option>
<option value="square_feet">Square feet</option>
<option value="square_yards">Square yards</option>
<option value="square_meter">Square meter</option>
<option value="acre">Acre</option>
<option value="hectare">Hectare</option>
</select>
</td>
</tr>
<tr>
<td align="center"><input type="submit" name="submit" value="Submit" onclick="return check_admin_post_property()"></td>
</tr>
标记不是格式化格式,因为stackoverflow的标记不能正常工作。在我这边甚至都看不到。
我正在使用script元素的src属性导入js。它位于名为js的文件夹中,其中包含js文件名post_property.js。在该文件中,有一个函数check_admin_post_property(),其中包含上述代码。 我无法发布完整的脚本和html文件,因为如果他们(我的工作场所人员)发现我将离开这里(这个网站是我工作地点检查最多的网站之一)。但是我已经发布了相关部分。如果您需要更多关于它的信息,请告诉我或指向已经完成此类事情的第三方页面。
答案 0 :(得分:0)
您的代码存在的问题是它使用<input type='submit'>
。你应该使用的是<input type='button'>
。这是工作代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">
function check_admin_post_property() {
var area=document.post_property.property_area.value;
if(area != "")
{
if(document.post_property.area_unit.value == "Select")
{
alert("Area unit must be selected");
document.post_property.area_unit.focus();
return false;
}
else
document.post_property.submit();
}
else {
alert("Area must be entered.");
document.post_property.property_area.focus();
}
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form name="post_property" action="<?php $_SERVER['PHP_SELF'] ?>" method="post" enctype="multipart/form-data">
<table>
<tr><td>Other fields</td></tr>
<tr>
<td>Property area:</td>
<td><input type="text" name="property_area" style="border:1px solid red;"><span style="color:red">*</span></td>
</tr>
<tr>
<td>Area unit:</td>
<td>
<select name="area_unit">
<option value="Select">Select</option>
<option value="square_feet">Square feet</option>
<option value="square_yards">Square yards</option>
<option value="square_meter">Square meter</option>
<option value="acre">Acre</option>
<option value="hectare">Hectare</option>
</select>
</td>
</tr>
<tr>
<td align="center"><input type="button" name="submit" value="Submit" onclick="return check_admin_post_property()"></td>
</tr>
</table>
</form>
</body>
</html>