| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Title</title> | |
| <script src="js/jquery-3.2.1.js"></script> | |
| </head> | |
| <body> | |
| <script> | |
| // 参数 ('返回的值为:'+response+',状态为:'+status +', 状态是:'+xhr.statusText') | |
| var obj={name:"lizhipeng",age:20} | |
| $("body").load("http://192.168.27.57:3000",function (responseText,status,xhr) { | |
| console.log(responseText); | |
| console.log(status); | |
| console.log(xhr); | |
| }) | |
| $.get("http://192.168.27.57:3000",obj,function (responseText,status,xhr) { | |
| console.log(responseText); | |
| console.log(status); | |
| console.log(xhr); | |
| }) | |
| $.post("http://192.168.27.57:3001",{name:"lizhenbin",age:20},function (responseText,status,xhr) { | |
| console.log(responseText); | |
| console.log(status); | |
| console.log(xhr); | |
| }); | |
| //$.getScript(),用于加载特定的 JS 文件; $.getJSON(),用于专门加载 JSON 文件。 | |
| /*$.getScript("js/jquery-3.2.1.js",function (responseText) { | |
| $("script").text($("script").text()+responseText); | |
| }) | |
| $.getJSON("config/tsconfig.json",function (responseText) { | |
| console.log(responseText) | |
| })*/ | |
| $.ajax({ | |
| type:"POST", | |
| url:"http://192.168.27.57:3001", | |
| data:{name:"xietian",age:20}, | |
| success:function (responseText) { | |
| console.log(responseText) | |
| } | |
| }) | |
| </script> | |
| </body> | |
| </html> |
Jquery中的AJAX
最新推荐文章于 2021-08-05 12:46:10 发布
711

被折叠的 条评论
为什么被折叠?



