码迷,mamicode.com
首页 > Web开发 > 详细

jQuery Ajax 方法应用。

时间:2014-09-18 16:09:44      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   for   数据   div   

jquery中的ajax方法比原生js简洁多了,写了一个小例子。

贴码:

 1  <script>
 2     $(function(){
 3         
 4         $(#getData).click(function(){
 5                     
 6                 $.ajax({
 7                     type:post, //get or post
 8                     url:test.txt, //request url
 9                     dataType:text,// response dataType  Text or json
10                     contentType:application/x-www-form-urlencoded;charset=utf-8, //encoded
11                     success:function(data){  //成功调用的回调函数 data是获取到的数据
12                         //console.log(data);  
13                         $(.c).html(data);  //可以对函数进行一系列的操作
14                     }

              error:function(){...} //失败调用的函数
15 }); 16 17 }) 18 19 }) 20 </script> 21 </head> 22 23 <body> 24 25 <button id=getData >Get Data By Ajax</button> 26 <div class=c> 27 28 </div> 29 </body>

 

jQuery Ajax 方法应用。

标签:style   blog   color   io   os   ar   for   数据   div   

原文地址:http://www.cnblogs.com/hellome/p/3979196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!