这个 easy , That was nothing !!没什么的方法一:
<body>
<script language="javascript">
function checkfrm(){
var pass1=documentgetElementById("password")value;
var pass2=documentgetElementById("password2")value;
if(pass1!=pass2)
{
alert("你输入的密码不一样!");
return false;
}
return true;
}
</script><form id="form1" name="form1" method="post" action="">
<label>
<input name="password" type="text" id="password" value="" size="45" />
</label>
<p>
<label>
<input name="password2" type="text" id="password2" value="" size="45" />
</label>
</p>
<p>
<label>
<input type="submit" name="button" id="button" value="提交" onclick="checkfrm()"/>
</label>
</p>
</form>
</body>-----------------------------------------------------------
方法二:
<body>
<script language="javascript">
function checkfrm(){
if(documentform1passwordvalue!=documentform1password2value)
{
alert("你输入的密码不一样!");
return false;
}
return true;
}
</script><form id="form1" name="form1" method="post" action="">
<label>
<input name="password" type="text" id="password" value="" size="45" />
</label>
<p>
<label>
<input name="password2" type="text" id="password2" value="" size="45" />
</label>
</p>
<p>
<label>
<input type="submit" name="button" id="button" value="提交" onclick="checkfrm()"/>
</label>
</p>
</form>
</body>
其实,理论上是一样的,写个判断就可以了嘛,跟C#\Java里差不多,大同小异而已如果还解决不了的话,加我Q:418364419 ,我Q远程协助教你!
写好了。看下
<a onclick=ss()>点这里</a> //开始点的那个超链接
function ss(){ //把那个显标输入框的层d出来
documentgetElementById("show")styledisplay="";
}
function click(){ //判断你输入的密码
var bb= "123 "; //你设的条件
var cc = documentgetElementByName("cc")value;
if(cc==bb){
alert("成功");
//转向你自己应该会写吧,我就不写了
}else{
alert("输入密码错误");
documentgetElementByName("pwd")focus();//如果错误,就让焦点回到那个输入密码的框
}
}
<div id="show" style="display:none">
<input type="text" name="pwd"/><input type="button" name="cc" onclick=click()/>
</div> //这个div放到你的html页面里面,样式我不太会,估计有点丑,你自己处理下。
你这个判断让页面跳转还可以,如果想添加修改密码的功能,最好有我写的这种方法。因为你那个输入框应该是window自带的。想加都不好加。如果你不想实现修改。你这个就是正确的。
楼主,把你var bb="123 "; 这个改成
var bb= "123"; 就对了,多了个空格。
第一个功能就行了。
我不能上QQ,公司不让上,加msn吧
yanlong_530@163com
以上就是关于JavaScript 脚本写密码和密码确认怎么设置全部的内容,包括:JavaScript 脚本写密码和密码确认怎么设置、网页Javascript脚本高手进,关于设对话框密码!、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)