有一段时间我在MVC工作,我从这篇文章中了解到, http://evolpin.wordpress.com/2011/04/12/asp-net-mvc-partialview-with-ajax/#comment-435
要使用AJAX加载用户控件,ww可以使用jquery,但是Jquery只使用GET Controller方法名称,我可以使用JQUERY调用POST控制器方法名吗?
答案 0 :(得分:0)
是,jQuery has a .post()
function用于向服务器资源提交POST请求。请注意,它只是the .ajax()
function的包装器:
This is a shorthand Ajax function, which is equivalent to:
$.ajax({
type: 'POST',
url: url,
data: data,
success: success,
dataType: dataType
});