ajax提交form表单详解编程语言

    $.ajax({   
                    cache: true,   
                    type: "POST",   
                    url:ajaxCallUrl,   
                    data:$('#yourformid').serialize(),// 你的formid,serialize()函数会把表单要提交的数据序列化成参数形式   
       
                    async: false,   
                    error: function(request) {   
                        alert("Connection error");   
                    },   
                    success: function(data) {   
                        $("#commonLayout_appcreshi").parent().html(data);   
                    }   
                });  

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/8729.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论