ajax post form表单

$.ajax({
                cache: true,
                type: "POST",
                url:"url",
                data:$('#formid').serialize(),// 你的formid
                async: false,
                error: function(request) {
                    alert("Connection error");
                },
                success: function(data) {
                    console.log(data);
                }
            });

 

posted @ 2015-07-02 10:24  坏气  阅读(606)  评论(0编辑  收藏  举报