jquery ajax 使用

来源:互联网 发布:linux suspend resume 编辑:程序博客网 时间:2024/06/10 08:54
$(function(){
 
    $('#send').click(function(){
 
         $.ajax({
 
             type: "GET",
 
             url: "test.json",
 
             data: {username:$("#username").val(), content:$("#content").val()},
 
             dataType: "json",
 
             success: function(data){
 
                         $('#resText').empty();   //清空resText里面的所有内容
 
                         var html = '';
 
                         $.each(data, function(commentIndex, comment){
 
                               html += '<div class="comment"><h6>' + comment['username']
 
                                         ':</h6><p class="para"' + comment['content']
 
                                         '</p></div>';
 
                         });
 
                         $('#resText').html(html);
 
                      }
 
         });
 
    });
 
});
0 0
原创粉丝点击