javascript prompt判断输入密码正确

<html><head><title>过渡页面</title><scriptlanguage="JavaScript">functionpassword(){vartes... <html>
<head>
<title>过渡页面</title>
<script language="JavaScript">
function password() {
var testV = 1;
var pass1 = prompt('请输入密码:','');
while (testV < 3)
{
if pass1 == "password" then
{ //password为密码
alert('登陆成功!');
window.location="passed.htm"; //正确链接的URL.html
break;
}
testV+=1;
var pass1 = prompt('密码不对,请重新输入');
}
if (pass1!="password" and testV ==3) then
location.href="about:blank";
}
document.write(password());
</script>
</head>
<body>
</body>
</html>
哪里有小问题?我试了很久没发现
展开
 我来答
lylegend13
2011-10-29 · TA获得超过4696个赞
知道大有可为答主
回答量:1701
采纳率:0%
帮助的人:1726万
展开全部
你好,我给你修改了两处if的地方,能正确运行了
if pass1 == "password" then 改成 if(pass1 == "password")
if (pass1!="password" and testV ==3) then 改成 if (pass1!="password" && testV ==3)

最后完整的代码是
<html>
<head>
<title>过渡页面</title>
<script language="JavaScript">
function password() {
var testV = 1;
var pass1 = prompt('请输入密码:','');
while (testV < 3)
{
if(pass1 == "password")
{ //password为密码
alert('登陆成功!');
window.location="passed.htm"; //正确链接的URL.html
break;
}
testV+=1;
var pass1 = prompt('密码不对,请重新输入');
}
if (pass1!="password" && testV ==3)
location.href="about:blank";
}
document.write(password());
</script>
</head>
<body>
</body>
</html>
nanwang21
2015-10-15 · TA获得超过2943个赞
知道大有可为答主
回答量:1220
采纳率:82%
帮助的人:243万
展开全部
代码中if判断书写有误,建议按照书写规范来写,应写成if(){},且if判断语句里面没有then。
1、if pass1 == "password" then 的判断语句修改为
if(pass1 == "password"){
//password为密码
alert('登陆成功!');
window.location="passed.htm"; //正确链接的URL.html
break;
}
2、if (pass1!="password" and testV ==3) then 的判断语句修改为 :
if (pass1!="password" && testV ==3){location.href="about:blank";}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2011-10-28
展开全部
if then?这是javascript的语法吗?成VB了。打开浏览器的调试工具,看报什么错
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式