码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript:使用jQuery提交Form表单

时间:2014-09-28 11:51:51      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   使用   ar   java   for   

DEMO说明一切:

 1 // this is the id of the form
 2 $("#idForm").submit(function() {
 3  
 4    var url = "path/to/your/script.php"; // the script where you handle the form input.
 5  
 6     $.ajax({
 7            type: "POST",
 8            url: url,
 9            data: $("#idForm").serialize(), // serializes the form‘s elements.
10            success: function(data)
11            {
12                alert(data); // show response from the php script.
13            }
14          });
15  
16     return false; // avoid to execute the actual submit of the form.
17 });

 

Javascript:使用jQuery提交Form表单

标签:style   blog   color   io   os   使用   ar   java   for   

原文地址:http://www.cnblogs.com/ilovewindy/p/3988833.html

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