json提交

 function publishPost(postId){
          var _csrf = jQuery('*[name="_csrf"]').val();
              jQuery.ajax({
            type:"POST",
            url:"/service/post/publishPost",
            data:{"postId":postId,"_csrf":_csrf},
            dataType:"json",
            success:function(msg) {
               if(msg.ret == 0 ){
                     var idss="isPublishs"+postId;                
                        document.getElementById(idss).innerHTML="已发布";
                      }  else if(msg.r == 1){
                      var msg=+msg.msg; 
                    alert(msg);
                  }
            }
            });
 }

 

posted @ 2015-12-15 18:08  _ylsn  阅读(162)  评论(0编辑  收藏  举报