1. 说明


gitee地址:https://gitee.com/studyCodingEx/studys/
2. $.ajax方法的基本使用
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>$.ajax方法基本使用</title> |
| </head> |
| <body> |
| <button id="btn">发送请求</button> |
| <script src="/js/jquery.min.js"></script> |
| <script> |
| $('#btn').on('click', function () { |
| $.ajax({ |
| type: 'get', |
| url: 'http://localhost:3000/base', |
| |
| |
| success: function (response) { |
| console.log(response); |
| }, |
| |
| |
| error: function (xhr) { |
| console.log(xhr) |
| } |
| }) |
| }); |
| </script> |
| </body> |
| </html> |
复制

3. $.ajax方法传递请求参数
| <!DOCTYPE html> |
| <html lang="en"> |
| |
| <head> |
| <meta charset="UTF-8"> |
| <title>$.ajax方法基本使用</title> |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| </head> |
| |
| <body> |
| <button id="btn">发送请求</button> |
| <script src="/js/jquery.min.js"></script> |
| <script> |
| var obj = { |
| name: 'wangwu', |
| age: 300 |
| } |
| $('#btn').on('click', function () { |
| $.ajax({ |
| type: 'post', |
| url: '/user', |
| |
| data: { |
| name: 'zhangsan', |
| age: 100 |
| }, |
| |
| |
| |
| contentType: 'application/x-www-form-urlencoded', |
| success: function (response) { |
| console.log(response); |
| } |
| }) |
| }); |
| </script> |
| </body> |
| |
| </html> |
复制

4. beforeSend钩子函数
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>$.ajax方法基本使用</title> |
| </head> |
| <body> |
| <button id="btn">发送请求</button> |
| <script src="/js/jquery.min.js"></script> |
| <script> |
| $('#btn').on('click', function () { |
| $.ajax({ |
| type: 'post', |
| url: '/user', |
| data: { |
| name: 'zhangsan', |
| age: 100 |
| }, |
| |
| |
| |
| beforeSend: function () { |
| alert('请求不会被发送'); |
| return false; |
| |
| |
| }, |
| |
| success: function (response) { |
| |
| console.log(response); |
| } |
| }) |
| }); |
| </script> |
| </body> |
| </html> |
复制

5. serialize()方法使用
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>serialize方法说明</title> |
| |
| |
| |
| |
| |
| |
| </head> |
| <body> |
| <form id="form"> |
| <input type="text" name="username"> |
| <input type="password" name="password"> |
| <input type="submit" value="提交"> |
| </form> |
| <script src="/js/jquery.min.js"></script> |
| <script type="text/javascript"> |
| $('#form').on('submit', function () { |
| |
| |
| var params = $('#form').serialize(); |
| console.log("parmas is:> " + params); |
| |
| serializeObject($(this)); |
| return false; |
| }); |
| |
| |
| |
| function serializeObject (obj) { |
| |
| var result = {}; |
| |
| |
| var array = obj.serializeArray(); |
| console.log(array); |
| |
| |
| $.each(array, function (index, value) { |
| result[value.name] = value.value; |
| }) |
| |
| |
| return result; |
| } |
| |
| </script> |
| </body> |
| </html> |
复制

6. $.ajax方法发送jsonp请求
| <!DOCTYPE html> |
| <html lang="en"> |
| |
| <head> |
| <meta charset="UTF-8"> |
| <title>$.ajax方法基本使用</title> |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| </head> |
| |
| <body> |
| <button id="btn">发送jsonp请求</button> |
| <script src="/js/jquery.min.js"></script> |
| <script> |
| function testFun(response) { |
| console.log("@@@@@@@@@@@@@@@@@@@@@"); |
| console.log(response); |
| } |
| |
| $('#btn').on('click', function () { |
| $.ajax({ |
| url: 'http://localhost:3000/jsonp', |
| |
| dataType: 'jsonp', |
| |
| jsonp: 'mycallback', |
| |
| jsonpCallback: 'testFun', |
| |
| |
| |
| |
| |
| }) |
| }); |
| </script> |
| </body> |
| |
| </html> |
复制

7. $.get、$.post
方法的使用
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>$.ajax方法基本使用</title> |
| |
| |
| |
| |
| </head> |
| |
| <body> |
| <button id="btn1">发送get请求</button> |
| <button id="btn2">发送post请求</button> |
| <script src="/js/jquery.min.js"></script> |
| <script> |
| $('#btn1').on('click', function () { |
| $.get('/base', 'name=zhangsan&age=30', function (response) { |
| console.log("response is:> "); |
| console.log(response); |
| }); |
| }); |
| |
| $('#btn2').on('click', function() { |
| $.post('/base', function (response) { |
| console.log(response) |
| }); |
| }); |
| </script> |
| </body> |
| </html> |
复制

8. restful风格的api
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Document</title> |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| </head> |
| |
| <body> |
| <script src="/js/jquery.min.js"></script> |
| <script type="text/javascript"> |
| |
| $.ajax({ |
| type: 'get', |
| url: '/users', |
| success: function (response) { |
| console.log(response) |
| } |
| }); |
| |
| |
| $.ajax({ |
| type: 'get', |
| url: '/users/1', |
| success: function (response) { |
| console.log(response) |
| } |
| }); |
| |
| |
| $.ajax({ |
| type: 'delete', |
| url: '/users/10', |
| success: function (response) { |
| console.log(response) |
| } |
| }); |
| |
| |
| $.ajax({ |
| type: 'put', |
| url: '/users/10', |
| success: function (response) { |
| console.log(response) |
| } |
| }); |
| </script> |
| </body> |
| </html> |
复制

9. xml介绍
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Document</title> |
| </head> |
| |
| <body> |
| <button id="btn">发送请求</button> |
| <div id="container" style="background-color: red;"></div> |
| <script type="text/javascript"> |
| var btn = document.getElementById('btn'); |
| var container = document.getElementById('container'); |
| |
| btn.onclick = function () { |
| var xhr = new XMLHttpRequest(); |
| xhr.open('get', '/xmlTest'); |
| xhr.send(); |
| xhr.onload = function () { |
| |
| var xmlDocument = xhr.responseXML; |
| |
| var title = xmlDocument.getElementsByTagName('title')[0].innerHTML; |
| container.innerHTML = title; |
| } |
| } |
| </script> |
| </body> |
| </html> |
| |
复制

10. todo案例
