文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

HTML+jQuery如何实现简单的登录页面

2023-06-25 22:13

关注

这篇文章主要介绍“HTML+jQuery如何实现简单的登录页面”,在日常操作中,相信很多人在HTML+jQuery如何实现简单的登录页面问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”HTML+jQuery如何实现简单的登录页面”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

简介

本文用示例展示简单的登录页面的写法。

会包括如下几种方案:纯HTML、HTML+jQuery(form data)格式、HTML+jQuery(json)格式。

公共代码(后端接口)

用SpringBoot写一个最简单的登录接口。

Controller

package com.example.controller; import com.example.entity.LoginVO;import org.springframework.web.bind.annotation.CrossOrigin;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.RestController; //跨域@CrossOrigin//Rest风格:返回JSON@RestControllerpublic class LoginController {    @PostMapping("login")    public LoginVO login() {        //省略对用户名和密码的判断        LoginVO loginVO = new LoginVO();        loginVO.setSuccess(true);        loginVO.setData("This is data");        return loginVO;    }}

pom.xml

<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">    <modelVersion>4.0.0</modelVersion>    <parent>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-parent</artifactId>        <version>2.3.0.RELEASE</version>        <relativePath/> <!-- lookup parent from repository -->    </parent>    <groupId>com.example</groupId>    <artifactId>demo_SpringBoot</artifactId>    <version>0.0.1-SNAPSHOT</version>    <name>demo_SpringBoot</name>    <description>Demo project for Spring Boot</description>     <dependencies>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-web</artifactId>        </dependency>    </dependencies></project>

示例1:最简(纯HTML)

代码

login.html

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>登录页</title></head> <body> <form action="http://localhost:8080/login" method="post">    <label for="username">用户名:</label>    <input type="text" name="username" id="username">     <label for="password">密码:</label>    <input type="password" name="password" id="password">     <!--下边这样写也可以    <label for="username">        用户名:<input type="text" name="username" id="username">    </label>    <label for="password">        密码:<input type="password" name="password" id="password">    </label>-->     <button type="submit">登录</button></form> </body></html>

测试

访问login.html

HTML+jQuery如何实现简单的登录页面

输入用户名和密码

用户名:输入abc;密码:输入 1234

结果

HTML+jQuery如何实现简单的登录页面

示例2:HTML+jQuery(form data)

代码

login.html

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>登录页</title>    <script src="https://cdn.staticfile.org/jquery/1.11.3/jquery.min.js"></script></head> <body> <form id="login-form">    <label for="username">用户名:</label>    <input type="text" name="username" id="username">     <label for="password">密码:</label>    <input type="password" name="password" id="password"></form> <div id="error-message"></div><button type="submit" onclick="loginViaFormData()">登录</button> <script>    function loginViaFormData() {        $.ajax(            {                type: "post",                url: "http://localhost:8080/login",                data: $("#login-form").serialize(), // 序列化form表单里面的数据传到后台                //dataType: "json", // 指定后台传过来的数据是json格式                success: function (result) {                    if (!result.success) {                        $("#errormessage").text("用户名或密码错误");                    } else if (result.success) {                        alert("登录成功");                        // 跳到index.html页面                        window.location.href="index.html" rel="external nofollow"  rel="external nofollow" ;                    }                }            }        )    }</script> </body></html>

index.html

<!doctype html><html lang="en"> <head>    <meta charset="UTF-8">    <title>This is title</title></head> <body> <div class="container">    登录成功后的页面</div> <script> </script></body></html>

测试

访问login.html

HTML+jQuery如何实现简单的登录页面

输入用户名和密码

用户名:输入abc;密码:输入 1234

HTML+jQuery如何实现简单的登录页面

点击登录

HTML+jQuery如何实现简单的登录页面

点击确定

HTML+jQuery如何实现简单的登录页面

示例3:HTML+jQuery(json)

代码

login.html

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>登录页</title>    <script src="https://cdn.staticfile.org/jquery/1.11.3/jquery.min.js"></script></head> <body> <form id="login-form">    <label for="username">用户名:</label>    <input type="text" name="username" id="username">     <label for="password">密码:</label>    <input type="password" name="password" id="password"></form> <div id="error-message"></div><button type="submit" onclick="loginViaJson()">登录</button> <script>    function loginViaJson() {        $.post("http://localhost:8080/login",            //发送给后端的数据            {                "userName": $(".username").val(),                "password": $(".password").val()            },            //回调函数            function (result) {                if (!result.success) {                    $("#errormessage").text("用户名或密码错误");                } else if (result.success) {                    alert("登录成功");                    // 跳到index.html页面                    window.location.href="index.html" rel="external nofollow"  rel="external nofollow" ;                }            }        )    }</script> </body></html>

index.html

<!doctype html><html lang="en"> <head>    <meta charset="UTF-8">    <title>This is title</title></head> <body> <div class="container">    登录成功后的页面</div> <script> </script></body></html>

测试

测试结果和前边“示例2:HTML+jQuery(form data)”一样

访问login.html

HTML+jQuery如何实现简单的登录页面

输入用户名和密码

用户名:输入abc;密码:输入 1234

HTML+jQuery如何实现简单的登录页面

点击登录

HTML+jQuery如何实现简单的登录页面

点击确定

HTML+jQuery如何实现简单的登录页面

到此,关于“HTML+jQuery如何实现简单的登录页面”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯