用js在前台界面进行账户密码的检测,账户和密码符合要求后可进行登录

  1 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2 <%
  3 String path = request.getContextPath();
  4 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  5 %>
  6
  7 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  8 <html>
  9   <head>
 10     <base href="<%=basePath%>">
 11
 12     <title>My JSP ‘login.jsp‘ starting page</title>
 13
 14     <meta http-equiv="pragma" content="no-cache">
 15     <meta http-equiv="cache-control" content="no-cache">
 16     <meta http-equiv="expires" content="0">
 17     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
 18     <meta http-equiv="description" content="This is my page">
 19     <!--
 20     <link rel="stylesheet" type="text/css" href="styles.css">
 21     -->
 22     <script>
 23         function rcheck(){
 24             var name=document.getElementById("name").value;
 25             var pwd=document.getElementById("pwd").value;
 26             var check=document.getElementById("check");
 27             if(name!=""){
 28                 if(name.length>=2){
 29                     if(pwd!=""){
 30                         if(pwd.length>=6){
 31                         check.innerHTML="<strong style=‘color:red‘>恭喜您注册成功</strong>"
 32                     }else{
 33                         check.innerHTML="<strong style=‘color:red‘>密码不能小于6位数</strong>"
 34                     }
 35                     }else{
 36                         check.innerHTML="<strong style=‘color:red‘>密码不能为空</strong>"
 37                     }
 38                 }else{
 39                     check.innerHTML="<strong style=‘color:red‘>账号长度必须大于1位</strong>"
 40                 }
 41             }else{
 42                 check.innerHTML="<strong style=‘color:red‘>账号不能为空</strong>"
 43             }
 44         }
 45
 46         function check(){
 47             var name=document.getElementById("name").value;
 48             var pwd=document.getElementById("pwd").value;
 49             var check=document.getElementById("check");
 50             if(name.length==0||pwd.length==0){
 51                 check.innerHTML="<strong style=‘color:red‘>账号或密码不能为空</strong>"
 52             }else{
 53                 document.forms[0].submit();
 54             }
 55         }
 56     </script>
 57
 58     <style type="text/css">
 59
 60         *{
 61             margin: 0;
 62             padding: 0;
 63         }
 64
 65         body{
 66             height:100%;
 67             width:100%;
 68             background-image: url(img/background.JPG);
 69             background-repeat:contain;
 70
 71         }
 72         #div{
 73             border:1px solid black;
 74             height:200px;
 75             width:300px;
 76             background-color: rgba(0,0,0,0.5);
 77             border-radius:20px;
 78             margin: 200px auto;
 79
 80
 81         }
 82         table{
 83             height:100%;
 84             width:100%;
 85             padding-top:10px;
 86             padding-bottom: 30px;
 87             color:white;
 88             font-family: sans-serif;
 89             font:bolder;
 90         }
 91         .res{
 92             width: 100px;
 93             height:30px;
 94             background-color: orange;
 95             border: 0px;
 96             border-radius:5px;
 97             color: white;
 98         }
 99         .login{
100             width: 100px;
101             height:30px;
102             background-color: green;
103             border: 0px;
104             border-radius:5px;
105             color: white;
106             cursor: pointer;
107         }
108         input {
109             width: 200px;
110             height:30px;
111             border-radius:5px;
112             border: 0px;
113             cursor: pointer;
114         }
115         #check{
116             width: 200px;
117             height:30px;
118             margin: -200px 700px;
119         }
120     </style>
121   </head>
122
123   <body>
124       <div id="div">
125            <form action="loginCheck" method="post">
126         <table style="text-align: center;">
127             <caption>欢迎来到办公系统</caption>
128             <tr>
129                 <td>
130                 账户:<input type="text" name="userName" placeholder="请输入账户名" id="name" style="padding-left: 10px">
131                 </td>
132             </tr>
133             <tr>
134                 <td>
135                 密码:<input type="password" name="userPwd" placeholder="请输入账户密码" id="pwd" style="padding-left: 10px">
136                 </td>
137             </tr>
138             <tr>
139                 <td colspan="2" valign="bottom">
140                     <input type="button" value="登录"  class="login" onclick="check()" >
141                 </td>
142             </tr>
143             <tr>
144                 <td colspan="2" valign="center" >
145                     <input type="button" value="注册" class="res" onclick="rcheck()">
146                 </td>
147             </tr>
148
149         </table>
150     </form>
151       </div>
152
153       <div id="check"></div>
154
155   </body>
156 </html>

原文地址:https://www.cnblogs.com/ztt0918/p/8252775.html

时间: 2024-11-10 11:54:12

用js在前台界面进行账户密码的检测,账户和密码符合要求后可进行登录的相关文章

《项目经验》--通过js获取前台数据向一般处理程序传递Json数据,并解析Json数据,将前台传来的Json数据写入数据库表中

  先看一下我要实现的功能界面:   这个界面的功能在图中已有展现,课程分配(教师教授哪门课程)在之前的页面中已做好.这个页面主要实现的是授课,即给老师教授的课程分配学生.此页面实现功能的步骤已在页面中有所体现,这里不再赘述,此篇文章主要介绍:我是如何通过js从前台获取数据,然后通过ajax技术向后台一般处理程序传递JSON,后台又是如何获取传来的JSON,并对JSON数据转换,然后将转换后的数据写入数据库的! 介绍这些步骤实现前,先说说自己的辛酸:絮叨辛酸,是因为为了实现这个功能,我真的用了很

通过js获取前台数据向一般处理程序传递Json数据,并解析Json数据,将前台传来的Json数据写入数据库表中

摘自:http://blog.csdn.net/mazhaojuan/article/details/8592015 通过js获取前台数据向一般处理程序传递Json数据,并解析Json数据,将前台传来的Json数据写入数据库表中  先看一下我要实现的功能界面:   这个界面的功能在图中已有展现,课程分配(教师教授哪门课程)在之前的页面中已做好.这个页面主要实现的是授课,即给老师教授的课程分配学生.此页面实现功能的步骤已在页面中有所体现,这里不再赘述,此篇文章主要介绍:我是如何通过js从前台获取数

JS处理前台页面的所有异常

/// <reference path="../../Scripts/jquery-1.4.1-vsdoc.js" /> /// <reference path="yzg.prototype.js" /> /* 作者 : 颜佐光 时间 : 2012-4-5 Email : [email protected] 备注 : 本JS为颜佐光所编写,可以用于任何场景,也可以更改代码,但是不能更改或者去掉作者的名字和备注,否则将追究法律责任. */ (f

Mac 登录界面多了一个其他账户删除

原因分析: 在安装一些软件时会自动启用root账户,但是在安装完成后没有关闭root账户,这样就造成系统以为用户要使用root账户,所以在登录界面出现了一个"其他"账户 解决方法: 打开终端,在终端中输入如下语句回车,然后重新启动,即可解决 <span style="font-size:14px;">sudo defaults write /Library/Preferences/com.apple.loginwindow SHOWOTHERUSERS_

[NSUserDefaults]的使用:登陆后不再显示登录界面。

之前搜了好多地方都没找到实现“登陆后不再显示登录界面,而默认自动登录”的方法. 待我发现有种存储方式叫NSUserDefaults的时候,立马又感觉新技能get了. 简介: NSUserDefaults是IOS应用用来存储用户偏好和配置信息的途径,就像是一个数据库,但是它通过键值对(key-value)的方式存储. 比如["Thematrix" forkey:"blogname"] 使用方法: 一共需要3个key,分别是"Didlogin" &q

facebook修改keyhash后,facebooke登录时候在验证界面重复弹出空白屏

facebook修改keyhash后,facebooke登录时候在验证界面重复弹出空白屏,原因是授权不通过 解决方法:取消facebook授权设置那里移除改应用 具体:移除应用过程:  设置与隐私->账号设置->应用->通过Facebook登录的应用->使用中->BD DE A ->移除 如果移除后登录不了,需要重新安装游戏 原文地址:https://www.cnblogs.com/liangtf/p/9112732.html

用WPF写一个登录界面,我想在输入完密码后按回车就能够验证登陆,而不需要用鼠标单击登陆按钮

原文:用WPF写一个登录界面,我想在输入完密码后按回车就能够验证登陆,而不需要用鼠标单击登陆按钮 在wpf中,将按钮的IsDefault设置为true ???? 原文地址:https://www.cnblogs.com/lonelyxmas/p/9345580.html

前台界面2

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CustomerInformationHandUpdate.aspx.cs" Inherits="CRM.UI.CustomerInformationHandUpdate" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/

JS 之 前台调用后台变量和方法

      在我们平时的网站开发过程中,并不是所有的网页都是后台查询出一个DataTable或者List然后绑定到DataGrid上.我们可能还会遇到前台需要后台的某一个变量,或者前台某个显示的地方需要调用一下后台的某一个查询的方法.下面我就给大家列举一个小例子: Asp.Net前台代码: <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta ht