<head>
<title>简单登陆页面</title>
<script>
function r()
{
var username=document.getElementById("username");
var pass=document.getElementById("password");
if(username.value=="")
{
alert("请输入用户名");
username.focus();
return;
}
else if(pass.value=="")
{
alert("请输入密码");
return;
}
else if((pass.value=="123456")&&(username.value=="W"))
{
<Meta http-equiv="refresh" content="1;url=0.htm">;
return;
}
else
{
alert("登录失败,请检查用户名和密码是否有误!");
return;
}
return true;
}
</script>
</head>
<body>
<form>
<table >
<tr align=center>
<td>用户名:</td><td><input type="text" name="username" id="username"></td>
</tr>
<tr align=center><td>密 码:</td><td><input type="password" name="password" id="password"></td></tr>
<tr align=center><td colspan="2"><input type="button" value="登 录" onclick="r();"/>
<input type="reset" value="重 置"/></td></tr>
</table>
</form>
</body>
</html>
1、打开开发工具ecplipse,点击ecplipse导航栏上的【File】-->New--->Maven Project,来新建个WEB工程。
2、新建好WEB工程后,在pox文件里添加所需要依赖的jar包。
3、jar导入后,在WEB工程下的source文件里新建包路径,然后在新建个controller,这里新建了个JumpPageController。
4、Controller类写好后,就来写下跳转的页面吧,这样跳转页面写的很简单,就是Controller类跳转过来,传递过来一个那么,在这里我们输入这个name并欢迎。
5、代码实现好后,在resources文件夹下配置下spring-mvc.xml文件内容,这样主要配置的是扫描注解的包和springmvc的视图解析器。
6、然后再点击eclipse菜单栏上面的Run Configurations来配置项目的启动项。
7、在打开的Run Configurations对话框里,按照下面的配置,然后点击Run进行启动。
网页制作中,写表单里用户只写上123456,提交后跳转baidu.com\/123456...
<input type="text" id="Sub" value="" \/><input type="button" onclick="Sub();" value="提交"><script>function Sub(){var a=document.getElementById("Sub").value;if(a=="123456"){ window.location.href = "http:\/\/zhidao.baidu.com\/123456.html";} } <\/script>以上代码...
急需求解:html密码验证并实现页面跳转
function open(){if(myform.password.value=="123456"){ document.form.action="index.html"; return true;}else{alert("密码不正确!")return false;}}<input type="submit" value="登陆" class="loginBtn" onclick="return open();"> ...
HTML网页下页1234...需要做很多个页面吗
这个一般是程序那边做的分页,只要一个页面就行了,里面的内容,让程序来调用就行了
怎么让一个html网页输入密码才能查看访问的方法?求解
if (pass1 == "123456") { alert('密码正确!');break;} testV += -1;var pass1 = prompt('密码错误!请重新输入:');} if (pass1 != "password" & testV == 3) history.go(-1);return " ";} document.write(password());<\/script> ...
在html里,怎样实现这种效果
可以在页面表单中加入隐藏域:<input type="hidden" name="toUserName" value="admin"> <input type="hidden" name="toUserPass" value="123456"> 然后在登录的时候使用JS判断就可以了~
求简单的asp登陆页,不用连数据库的
<label>用户名:<input name="userid" type="text" id="userid" \/> <br \/> <br \/> 密 码 :<input name="pwd" type="text" id="pwd" \/> < if request("action")="login" then dim userid1,pwd1 userid1="admin"pwd1="123456"userid=trim(request("userid"))pwd=trim(...
若用户名和密码输入正确,则登陆成功,打开新页面,若输入错误,则弹出err...
*import tkMessageBox#subroot窗体subroot = Tk()subroot.title("登陆")subroot.geometry("400x400")#标签、输入框和按钮lab1 = Label(subroot,text = "用户名")lab1.place(relx = 0.3,rely = 0.3,anchor = CENTER)lab2 = Label(subroot,text = "密码")lab2.place(relx = 0.3,...
用javascript脚本语言编写的html登陆界面代码
function check(){ if(document.form1.username.value==""){ alert("请填写登录名称!");return false;} if(document.form1.password.value==""){ alert("请填写登录密码!");return false;} if(document.form1.username.value!="admin"&&document.form1.password.value!="123456"){ alert("...
html如何点击按钮跳转页面,并且更改跳转过后页面中某些标签的样式 求...
跳转好实现 <input type="button" value="点此跳转" onclick="goUrl()"\/><script type="text\/javascript"> function goUrl() { location.href = "http:\/\/aaa.com\/B.jsp?ischange=1"; }<\/script>但是你想要直接更改跳转之后的页面样式,那样是行不通的,比如,你从A页面跳转到B...
jsp通过输入框得到的数据怎么和mysql里面的表数据对比判断是否相等...
1、你可以把你从页面输入的数据传到后台,比如用户名username="hhaip"和密码password="123456"。2、查询语句可以select * from user where username=username and password=password 3、假设查询出来的结果是不空的,就是ResultSet rs = jdbc.selectSQL(sql);里的rs不为空的话,说明数据库有这个用户,...