AJAX入门

AJAX

ajax的特点:

  • 优点:

    1. 可以无需刷新页面与服务器进行通信

    2. 允许根据用户事件来更新部分页面内容

  • 缺点

    1. 没有浏览历史,不能回退

    2. 存在跨域问题(同源)

    3. SEO不友好

Ajax的使用:

ajax快速入门:

  1. 编写AjaxServlet,并使用response对象输出字符串

    @WebServlet("/ajaxServlet")
    public class AjaxServlet extends HttpServlet {
        @Override
        protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            //响应数据
            response.getWriter().write("hello,ajax");
            System.out.println("ajax........");
        }
    ​
        @Override
        protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            this.doGet(request, response);
        }
    }
  2. 创建XMLHttpRequest对象,用于和服务器交换数据

    <script>
        //创建核心对象
        var xhttp;
        if (window.XMLHttpRequest) {
            xhttp = new XMLHttpRequest();
        } else {
            // code for IE6, IE5
            xhttp = new ActiveXObject("Microsoft.XMLHTTP");
        }
        //发送请求
        //路径需要填写绝对路径(前后端分离)
        xhttp.open("GET", "http://localhost/ajax-demo/ajaxServlet")
        xhttp.send();
        //获取响应
        xhttp.onreadystatechange = function() {
            if (this.readyState == 4 && this.status == 200) {
    ​
                alert(this.responseText);
            }
        };
    ​
    </script>

案例:使用Ajax验证用户名是否存在

需求:在完成用户注册时,当用户名输入框失去焦点时,校验用户名是否在数据库已存在

  • register.html

    1. 给用户名输入框失去焦点绑定事件onblur

    2. 发送Ajax请求,携带username参数

  • SelectUserServlet

    1. 接收用户名

    2. 调用service查询user

    3. 返回标记

  • register.html

    3.处理响应:是否显示提示信息

    Servlet代码:

    @WebServlet("/selectUserServlet")
    public class SelectUserServlet extends HttpServlet {
        @Override
        protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    ​
            //1.接收用户名
            String username = request.getParameter("username");
    ​
            //2.调用service查询user对象
    ​
            boolean flag =true;
    ​
            //3.响应标记
    ​
            response.getWriter().write(""+flag);
        }
    ​
        @Override
        protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            this.doGet(request, response);
        }
    }

html文件:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>欢迎注册</title>
    <link href="css/register.css" rel="stylesheet">
</head>
<body>
​
<div class="form-div">
    <div class="reg-content">
        <h1>欢迎注册</h1>
        <span>已有帐号?</span> <a href="login.html">登录</a>
    </div>
    <form id="reg-form" action="#" method="get">
​
        <table>
​
            <tr>
                <td>用户名</td>
                <td class="inputs">
                    <input name="username" type="text" id="username">
                    <br>
                    <span id="username_err" class="err_msg" style="display: none">用户名太受欢迎</span>
                </td>
​
            </tr>
​
            <tr>
                <td>密码</td>
                <td class="inputs">
                    <input name="password" type="password" id="password">
                    <br>
                    <span id="password_err" class="err_msg" style="display: none">密码格式有误</span>
                </td>
            </tr>
​
​
            <tr>
                <td>验证码</td>
                <td class="inputs">
                    <input name="checkCode" type="text" id="checkCode">
                    <img src="imgs/a.jpg">
                    <a href="#" id="changeImg">看不清?</a>
                </td>
            </tr>
​
        </table>
​
        <div class="buttons">
            <input value="注 册" type="submit" id="reg_btn">
        </div>
        <br class="clear">
    </form>
​
</div>
<script>
    //1.给用户名输入框失去焦点绑定事件onblur
    document.getElementById("username").onblur = function () {
        //2.发送Ajax请求
        //获取用户名得知
        var username = this.value;
​
        //创建核心对象
        var xhttp;
        if (window.XMLHttpRequest) {
            xhttp = new XMLHttpRequest();
        } else {
            // code for IE6, IE5
            xhttp = new ActiveXObject("Microsoft.XMLHTTP");
        }
        //发送请求
        //路径需要填写绝对路径(前后端分离)
        xhttp.open("GET", "http://localhost/ajax-demo/selectUserServlet?username=" + username)
        xhttp.send();
        //获取响应
        xhttp.onreadystatechange = function () {
            if (this.readyState == 4 && this.status == 200) {
​
                //alert(this.responseText);
​
                //判断
                if (this.responseText == "true"){
                    //用户名存在,显示提示信息
                    document.getElementById("username_err").style.display='';
                }else{
                    //不存在,清除信息
                    document.getElementById("username_err").style.display='none';
                }
​
                    }
        }
    };
</script>
</body>
</html>

css文件:

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.reg-content{
    padding: 30px;
    margin: 3px;
}
a, img {
    border: 0;
}
​
body {
    background-image: url("../imgs/reg_bg_min.jpg") ;
    text-align: center;
}
​
table {
    border-collapse: collapse;
    border-spacing: 0;
}
​
td, th {
    padding: 0;
    height: 90px;
​
}
.inputs{
    vertical-align: top;
}
​
.clear {
    clear: both;
}
​
.clear:before, .clear:after {
    content: "";
    display: table;
}
​
.clear:after {
    clear: both;
}
​
.form-div {
    background-color: rgba(255, 255, 255, 0.27);
    border-radius: 10px;
    border: 1px solid #aaa;
    width: 424px;
    margin-top: 150px;
    margin-left:1050px;
    padding: 30px 0 20px 0px;
    font-size: 16px;
    box-shadow: inset 0px 0px 10px rgba(255, 255, 255, 0.5), 0px 0px 15px rgba(75, 75, 75, 0.3);
    text-align: left;
}
​
.form-div input[type="text"], .form-div input[type="password"], .form-div input[type="email"] {
    width: 268px;
    margin: 10px;
    line-height: 20px;
    font-size: 16px;
}
​
.form-div input[type="checkbox"] {
    margin: 20px 0 20px 10px;
}
​
.form-div input[type="button"], .form-div input[type="submit"] {
    margin: 10px 20px 0 0;
}
​
.form-div table {
    margin: 0 auto;
    text-align: right;
    color: rgba(64, 64, 64, 1.00);
}
​
.form-div table img {
    vertical-align: middle;
    margin: 0 0 5px 0;
}
​
.footer {
    color: rgba(64, 64, 64, 1.00);
    font-size: 12px;
    margin-top: 30px;
}
​
.form-div .buttons {
    float: right;
}
​
input[type="text"], input[type="password"], input[type="email"] {
    border-radius: 8px;
    box-shadow: inset 0 2px 5px #eee;
    padding: 10px;
    border: 1px solid #D4D4D4;
    color: #333333;
    margin-top: 5px;
}
​
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
    border: 1px solid #50afeb;
    outline: none;
}
​
input[type="button"], input[type="submit"] {
    padding: 7px 15px;
    background-color: #3c6db0;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    min-width: 80px;
    border: none;
    color: #FFF;
    box-shadow: 1px 1px 1px rgba(75, 75, 75, 0.3);
}
​
input[type="button"]:hover, input[type="submit"]:hover {
    background-color: #5a88c8;
}
​
input[type="button"]:active, input[type="submit"]:active {
    background-color: #5a88c8;
}
.err_msg{
    color: red;
    padding-right: 170px;
}
#password_err,#tel_err{
    padding-right: 195px;
}
​
#reg_btn{
    margin-right:50px; width: 285px; height: 45px; margin-top:20px;
}
​
#checkCode{
    width: 100px;
}
​
#changeImg{
    color: aqua;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值