asp.net mvc jquery - 显示部分页面作为返回结果?

发布于 2024-09-04 02:38:32 字数 396 浏览 6 评论 0原文

使用 jQuery,是否可以调用 /ControllerName/GetSomething?parameter=test,而在 GetSomething 方法中我有以下内容:

public ActionResult Details()
{
    filterQuery.OrderBy = Request.QueryString["parameter"];

    var contacts = contactRepository.FindAllContacts(filterQuery).ToList();

    return View("ContactList");
}

然后淡出 ContactList.ascx 的当前显示,替换它有更新的吗?

With jQuery, is it possible to call /ControllerName/GetSomething?parameter=test, while in GetSomething method I have following:

public ActionResult Details()
{
    filterQuery.OrderBy = Request.QueryString["parameter"];

    var contacts = contactRepository.FindAllContacts(filterQuery).ToList();

    return View("ContactList");
}

and then fadeOut current display of ContactList.ascx replacing it with updated one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风追烟花雨 2024-09-11 02:38:32

有一个 PartialViewResult 返回类型:

public PartialViewResult Details()

然后返回一个 PartialView

return PartialView("ContactList");

在 jQuery 中,使用 load() 方法通过 AJAX 检索结果,然后使用 jQuery fadeIn()、fadeOut() 和 fadeTo() 方法的某种组合。

$('#result').load('/ControllerName/GetSomething?parameter=test', function() {
  $('#result').fadeOut etc...
});

There is a PartialViewResult return type:

public PartialViewResult Details()

Then return a PartialView

return PartialView("ContactList");

In jQuery, use the load() method to retrieve the results using AJAX and then use some combination of the jQuery fadeIn(), fadeOut(), and fadeTo() methods.

$('#result').load('/ControllerName/GetSomething?parameter=test', function() {
  $('#result').fadeOut etc...
});
相权↑美人 2024-09-11 02:38:32

您需要调用$('selector').load(url)

例如:

$('#idOfElementContainingPartialView')
    .fadeOut()
    .load(
        '/ControllerName/GetSomething?parameter=test',
        function() { $(this).fadeIn(); }
    );

You need to call $('selector').load(url).

For example:

$('#idOfElementContainingPartialView')
    .fadeOut()
    .load(
        '/ControllerName/GetSomething?parameter=test',
        function() { $(this).fadeIn(); }
    );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文