jquery ajax post


                    $.ajax({type:"post",
                    url:"PhotoTransferNew.ashx",
                   data:{
                        username:"000",
                         job:"111"
                    },
                    error:function(msg){
                      alert("error") ;
                    },
                    success:function (msg){
                      alert("success");
                    }
                    });

原文地址:https://www.cnblogs.com/zhwl/p/2344080.html