String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
后台管理系统盛世翌豪后台管理系统
placeholder="用户名">
placeholder="密码">
$("#commit").click(function(){
var name =$("#name").val();
var password = $("#password").val();
if(name =='admin'&&password =='ehouse'){
location.href="admin/login.html";
}else{
alert("用户名或密码不正确");
}
});