js 表单验证问题 求指教
<head><script type="text/javascript">
function form_validator(theform)
{
if (document.luntan.pwd.value=="")
{
document.newenterprise.pwd.focus();
alert("密码不能为空");
return false;
}
}
return(true)
</script>
</head>
<body>
<form name="luntan" method="post" onsubmit="return form_validator(this);">
<input type="text" name="pwd">
<label>
<input type="submit" name="Submit" value="提交" />
</label>
</form>
</body>
验证不出去啊 求高手指教一下 谢
还有就是关于Introduction像这个是什么函数?做表单验证的需要特定的对应函数么?比如我看到好多Enterprise_Telephone/Name/Address 求指教