Blogger Information
Blog 41
fans 2
comment 1
visits 26093
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0410作业
郭恒的博客
Original
491 people have browsed it

IMG_20180411_145526.jpg

实例

<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
    <head>
        <meta charset="UTF-8">
        <title>0410</title>
    </head>
    <body>
        <h2>用户登录</h2>
        <form>
            <p>用户名:<input type="text" name="name"></p>
        </form>
    </body>
    <script src="js/jquery-1.8.0.min.js" type="text/javascript"></script>
    <script>
        $(':input').blur(function () {
            $.ajax({
                url: 'api/demo.php',
                type: 'GET',
                data: $('form:first').serializeArray(),
                success: function (msg, status, xhr) {
                    console.log(msg)
                    $('p span').empty()
                    $('p').append($(msg))
                }
            })
        })
    </script>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
  • 2018-03-16 15:12:44