求大神:html的文本输入框的post提交怎么写??? 5

<formaction=/cgi-bin/post-querymethod=POST>密码:<inputtype=textname=密码><inputtype=submi... <form action=/cgi-bin/post-query method=POST>
密码: <input type=text name=密码> <input type=submit value="确定">
</form>

--------------------------------------------------------------------------------------------
我想要的是:
输入正确密码为888时,点确定后跳转到另一个页面:a.html
输入错误密码时,弹出一个带确定的对话框:对不起,密码错语,请重新输入

求哪位大神解答,谢谢了
密码固定的,可以有JS语句
展开
 我来答
liuqiwen0512
2014-02-27 · TA获得超过115个赞
知道小有建树答主
回答量:122
采纳率:0%
帮助的人:100万
展开全部

<form action="/cgi-bin/post-query/a.html" method="POST" id="from1">
          密码: <input type="text" name="密码" id="pwid">

          <input type="button" value="确定"  onclick="checkpwd()">
</form>

<script>
function checkpwd(){
   var pwid=document.getElementById("pwid"),//得到密码框 
       from1 = document.getElementById("from1");//得到需要提交的表单            if(pwid.value==888){ //如果密码正确 
         from1.submit();//提交表单
        }else{  
         alert(对不起,密码错语,请重新输入!);
       }
 </script>
Yan之缘
2018-03-07 · TA获得超过4188个赞
知道大有可为答主
回答量:3452
采纳率:76%
帮助的人:485万
展开全部

这个还是用上JS比较方便。

<script type="text/javascript">
    function check (form)
    {
       if (form.password.value != 888)
        {
            alert ("对不起,密码错误,请重新输入");
            form.password.focus ();
            return false;
        }
        else 
        {
            return true;
        }
    }
</script>
<form action="a.html" method="POST">
密码: <input type="text" name="password" id="password"> <input type="submit" value="确定" onclick="return check(this.form);">
</form>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xiaogan1104
2014-02-27
知道答主
回答量:23
采纳率:0%
帮助的人:11.3万
展开全部
这个要用JS做的。。。。。

<script type="text/javascript">
function checkpwd(){
var pwid=document.getElementById("pwid");

if(pwid.value==888) from1.submit();
else alert(对不起,密码错语,请重新输入!);
}
</script>

上面是JS代码,不知道你看的懂不。。不懂可以留言问我。
下面是我加的一些参数,目的是为了结合JS用的!

<form action="/cgi-bin/post-query" method="POST" id="from1">
密码: <input type="text" name="密码" id="pwid"> <input type="submit" value="确定" onclick="checkpwd()">
</form>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Mr_LeiChen
2018-03-07 · 超过20用户采纳过TA的回答
知道答主
回答量:82
采纳率:65%
帮助的人:14.5万
展开全部
<html>
<head>
<script type="text/javascript">
function click1(){
var pwd = document.getElementById("pwd");
if(pwd.value==888){
window.location.href="a.html";
}else{
alert("对不起,密码错语,请重新输入");
pwd.value="";
}
}
</script>
</head>
<body>
<form  method='post'>
<p>密码:<input type='password' id='pwd' name='pwd'/><input type='button' onclick='click1()' value='提交'/></p>
</form>
</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
前田音果
2018-03-07
知道答主
回答量:27
采纳率:75%
帮助的人:5万
展开全部
<script>
function pas(){
var pass = document.getElementById('pass').value;
if(pass == '888'){
location.href="a.html";
}else{
alert('对不起,密码错语,请重新输入');
}
}
</script>
<form action=/cgi-bin/post-query method=POST>
密码:
<input type='text' name='密码' id="pass">
<input type='button' onclick="pas();" value="确定">
</form>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式