ajax提交form表单

2021-09-24 10:09:41 浏览数 (1)

代码语言:javascript复制
$.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);  
                }  
            });  </pre> 

0 人点赞