小编典典

asp.net MVC 4通过Ajax调用提交

ajax

我在控制器中有这个:

[HttpPost]
    public ActionResult Create(Student student)
    { //somecode..

我想从:

<form method="post" action="/student/create"> 
<!-- the from contents-->

如何通过使用Ajax调用来提交此信息我需要让此表单提交的JQuery ajax调用。

而且我想确保数据类型,谢谢


阅读 279

收藏
2020-07-26

共1个答案

小编典典

试试这个

var form = $('#formId');
$.ajax({
  cache: false,
  async: true,
  type: "POST",
  url: form.attr('action'),
  data: form.serialize(),
  success: function (data) {
    alert(data);
 }
});
2020-07-26