gpt4 book ai didi

jquery - asp.net MVC 4 通过ajax调用提交

转载 作者:行者123 更新时间:2023-12-03 22:43:18 25 4
gpt4 key购买 nike

我在 Controller 中有这个:

[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);
}
});

关于jquery - asp.net MVC 4 通过ajax调用提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19924079/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com