jquery的ajax的语法

Posted sanerandm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery的ajax的语法相关的知识,希望对你有一定的参考价值。

 1 <!doctype html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>jquery-ajax</title>
 6 </head>
 7 <body>
 8 <input type="button" value="点击" id="btn">
 9 <div id="showInfo"></div>
10 <script type="text/javascript" src="jquery-1.11.2.js"></script>
11 <script type="text/javascript">
12     $(function(){
13 
14         $("#btn").click(function(){
15             $.ajax({
16                 url:"04data.php",
17                 dataType:"json",
18                 type:"get",
19                 success:function(data){
20                     alert(data);
21                     //$("#showInfo").html(data);
22                 },
23                 error:function(e){
24                     console.log(e);
25                 }
26             });
27         });
28 
29 
30 
31     });
32 
33 </script>
34 </body>
35 </html>

 

<!doctype html><html lang="en"><head><meta charset="UTF-8"><title>jquery-ajax</title></head><body><input type="button" value="点击" id="btn"><div id="showInfo"></div><script type="text/javascript" src="jquery-1.11.2.js"></script><script type="text/javascript">$(function(){
$("#btn").click(function(){$.ajax({url:"04data.php",dataType:"json",type:"get",success:function(data){alert(data);//$("#showInfo").html(data);},error:function(e){console.log(e);}});});


});
</script></body></html>






以上是关于jquery的ajax的语法的主要内容,如果未能解决你的问题,请参考以下文章

jQuery高级Ajax

十条jQuery代码片段助力Web开发效率提升

十条jQuery代码片段助力Web开发效率提升

Jquery中ajax基本语法

JQuery AJAX 轮询语法

使用 JQuery ajax 在 DOM 操作后附加事件