设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 119|回复: 5
打印 上一主题 下一主题

郁闷问题!ASP页提交表单时执行不了Javascript判断!

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-9 02:28:19 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
<script language="javascript" type="text/javascript">
function judge()
{
if (document.form1.userpwd1.value=="")
{alert("请输入你的密码");
document.form1.userpwd1.focus()
document.form1.userpwd1.select()
return false;}
if (document.form1.userpwd2.value!=document.form1.userpwd1.value)
{alert("两次输入密码不一致,请重新输入");
document.form1.userpwd1.focus()
document.form1.userpwd1.select()
return false;}
if (document.form1.userpwd1.value.length<4||document.form1.userpwd1.value.length>8)
{alert("请输入4-8位的密码");
document.form1.userpwd1.focus()
document.form1.userpwd1.select()
return false;}

if (document.form1.nickname.value=="")
{alert("请输入你的昵称");
document.form1.nickname.focus()
document.form1.nickname.select()
return false;}


var regx=/^\d{5,9}$/;
if(!regx.test(document.form1.qq.value))
{alert("请输入你正确的QQ号");
document.form1.qq.focus()
document.form1.qq.select()
return false;}

}
</script>
<%

userid=session("userid")
userpwd1=session("userpwd1")
set myconn=Server.CreateObject("ADODB.Connection")
myconn.open "Provider = Microsoft.Jet.OLEDB.4.0;Data Source = "&server.Mappath("user.mdb")
set rs=server.CreateObject("ADODB.RecordSet")

rs.open "select * from [user] where userid='"&userid&"' ",myconn,1,1

nickname=rs("nickname")  
qq=rs("qq")


rs.close
end if
%>
<form id="form1" name="form1" method="post" oXsubmit="reXurn judge()" action="xgzl_cl.asp" >  <--屏蔽了 ..只能用"oXsubmit="retXurn judge()" 代替"  大家都明白!提交时激发judge()函数-->
新密码:<input name="userpwd1" type="text" class="heng" >
确认新密码:<input name="userpwd2" type="text" class="heng" >
昵称:<input name="nickname" type="text" class="heng"  value=<% =server.htmlencode (nickname)%>>
QQ:<input name="qq" type="text" class="heng" value= <% =server.htmlencode (qq)%> >
<input name="Submit" type="submit" class="loginbutton" value="提交" >
</form>
我也不知道那点错子  看着都正确啊! 就是执行不了judge()函数进行不了判断!而在别的页面,同样的方法却能判断!郁闷 高手看看那里的问题,给指点一下,谢谢! 
2#
发表于 2010-1-9 02:28:23 | 只看该作者
哈  写代码时要细心才行````
回复 支持 反对

使用道具 举报

3#
发表于 2010-1-9 02:28:27 | 只看该作者
<form id="form1" name="form1" method="post" oXsubmit="reXurn judge()" action="xgzl_cl.asp" >
改成
<form id="form1" name="form1" method="post" oXsubmit="return judge()" action="xgzl_cl.asp" >
回复 支持 反对

使用道具 举报

4#
发表于 2010-1-9 02:28:31 | 只看该作者
找到问题了,谢谢!
回复 支持 反对

使用道具 举报

5#
发表于 2010-1-22 15:05:05 | 只看该作者
路过....
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 12:34 , Processed in 0.082650 second(s), 11 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表