码迷,mamicode.com
首页 > 其他好文 > 详细

Ajax提交form表单

时间:2014-08-29 19:46:58      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   for   div   cti   

 1 $.ajax({
 2   cache: true,
 3   type: "POST",
 4   url:ajaxCallUrl,
 5   data:$(‘#yourformid‘).serialize(),// 你的formid
 6   async: false,
 7   error: function(request) {
 8     alert("Connection error");
 9   },
10   success: function(data) {
11     $("#commonLayout_appcreshi").parent().html(data);
12   }
13 });

 

 

Ajax提交form表单

标签:style   blog   color   os   io   ar   for   div   cti   

原文地址:http://www.cnblogs.com/shangrongyiweng/p/3945494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!