我在控制器中有这个:
[HttpPost] public ActionResult Create(Student student) { //somecode..
我想从:
<form method="post" action="/student/create"> <!-- the from contents-->
如何通过使用Ajax调用来提交此信息我需要让此表单提交的JQuery ajax调用。
而且我想确保数据类型,谢谢
试试这个
var form = $('#formId'); $.ajax({ cache: false, async: true, type: "POST", url: form.attr('action'), data: form.serialize(), success: function (data) { alert(data); } });