*/ 出自: 编程中国 http://www.bc-cn.net
*/ 作者: zuojs E-mail:zuojinsong@126.com QQ:252462443
*/ 时间: 2007-8-3 编程论坛首发
*/ 声明: 尊重作者劳动,转载请保留本段文字
*/ --------------------------------------------------------------------------------------
请教:
本人的想法就是想插入数据库用户和密码(这个可以实现),但起初你要设置用户和密码的时候,我如何检测他是否为空白???关键还是script这段。。。。还请各位给点指导。。。。。。小虾在此先谢了
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>登陆界面</title>
<script type="text/javascript">
<!--
function form1_onsubmit(){
if("usename"==""){
alter("请输入姓名")
document.form1.usename.focus()
return false
}
else if("password"==""){
alter("请输入密码")
document.form1.password.focus()
return false
}
}
-->
</script>
</head>
<body>
<H1 align="center">上海佰睿实业有限公司客户管理系统</H1>
<form name="form1" action="" method="get" onsubmit="return form1_onsubmit()">
<table align="center" bgcolor="#FFFFFF" border="0" bordercolor="#99CCCC">
<tr>
<td align="center">用户名:</td>
<td align="center"><input name="usename" type="text" size="20"></td>
</tr>
<td align="center">密 码:</td>
<td align="center"><input name="password" type="text" size="20"></td>
<tr>
</table>
<div align="center"><input type="submit" value="提交" > <input type="reset" value="重置" ></div>
</tr>
</form>
</body>
</html>