求大神: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语句 展开
密码: <input type=text name=密码> <input type=submit value="确定">
</form>
--------------------------------------------------------------------------------------------
我想要的是:
输入正确密码为888时,点确定后跳转到另一个页面:a.html
输入错误密码时,弹出一个带确定的对话框:对不起,密码错语,请重新输入
求哪位大神解答,谢谢了
密码固定的,可以有JS语句 展开
6个回答
展开全部
<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>
展开全部
这个还是用上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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个要用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>
<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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<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>
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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询