码迷,mamicode.com
首页 > Web开发 > 详细

Ajax提交form表单

时间:2020-06-26 22:14:00      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:pos   control   lsp   ESS   ppi   col   action   post   span   

1.编写form提交页面

 1 <h1>ajax方式提交表单数据</h1>
 2 <form id="produce-form" name="produce-form" style="text-align: center" action="##" onsubmit="return false">
 3     <table style="text-align: center" border="1">
 4         <tr>
 5             <td>测试数据</td>
 6             <td><input type="text" id="testData" name="testData" required></td>
 7         </tr>
 8         <tr>
 9             <td colspan="2"><input type="button" onclick="addForm()" value="提交"></td>
10         </tr>
11     </table>
12 </form>

 

2.js

 1 function addForm() {
 2     $.ajax({
 3         url: "/formtest/addFormAjax"
 4         , type: "post"
 5         , dataType: "json"
 6         // , data: $("#produce-form").serialize()
 7         , data: {
 8             testData: $("#testData").val()
 9         }
10         , success: function (result) {
11         }
12         , error: function () {
13         }
14     });
15 }

3.Controller

1 @Controller
2 public class FormController {
3     @ResponseBody
4     @PostMapping("addFormAjax")
5     public String addFormAjax(String testData) {
6         System.out.println("testData==" + testData);
7         return "200";
8     }
9 }

 

Ajax提交form表单

标签:pos   control   lsp   ESS   ppi   col   action   post   span   

原文地址:https://www.cnblogs.com/moreforests/p/13196497.html

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