Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,伙计们,我还在学习 jquery 和 ajax,下面是我尝试做的一个例子,但问题是这个在 mvc 中,所以让我很困惑。我只是想知道是否有人可以向我推荐一个 jquery ui 弹出提交表单的示例,该表单带有类似于图片中的 ajax 部分回发,在 asp.net 中。
您可以在视图文件的末尾编写 javascript 代码:
$('#form-id').submit(function () { data = $(this).serialize() $.ajax({ url: 'your url', type: 'POST', data: data, success: function(response) { //Implement your code here } }); return false;
});