Ajax发送请求模版

前端之家收集整理的这篇文章主要介绍了Ajax发送请求模版前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$(function(){
    $('#send').click(function(){
         $.ajax({
             type     : "POST",url      : "",cache    : false,data     : {username:$("#username").val(),content:$("#content").val()},dataType : "json",success  : function(data){
                         $('#resText').empty();
                         $.each(data,function(commentIndex,comment){
                               html += '<div class="comment"><h6>' + comment['username']
                                         + ':</h6><p class="para"' + comment['content']
                                         + '</p></div>';
                         });
                         $('#resText').html(html);
                      },error    : function () {
                        alert("处理出错,请重新处理!");
                      },complete  : function(data) {
                        alert("处理完成");
                      }
         });
    });
});


$.ajax({
   type     : "POST",url      : ctx + "",data     : {productId : productId},success  : function(data){

   },error    : function () {

   },complete  : function(data) {

   }
});
原文链接:https://www.f2er.com/ajax/161669.html

猜你在找的Ajax相关文章