如何在asp net mvc中使控件更新自身(部分更新)

发布于 2024-10-03 05:43:53 字数 61 浏览 2 评论 0原文

我有一个在页面中多次使用的部分视图。单击每个控件上的链接时,我希望该控件自行刷新。我怎样才能最轻松地实现它?

I have a partial view which is used more than once in a page. On clicking a link on each of these controls I want that control to refresh itself. How can I achieve it most easily?

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

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

发布评论

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

评论(1

宛菡 2024-10-10 05:43:53

假设在您的主视图中多次包含部分:

<div class="container"><% Html.RenderPartial("Foo"); %></div>
<div class="container"><% Html.RenderPartial("Foo"); %></div>
<div class="container"><% Html.RenderPartial("Foo"); %></div>

这是部分的内容:

<%= Html.ActionLink("update", "foo", null, new { @class = "update" })%>
<%: DateTime.Now %>

现在剩下的就是逐步增强这些锚点:

$(function () {
    $('a.update').live('click', function () {
        $(this).closest('div.container').load(this.href);
        return false;
    });
});

Let's suppose that in your main view you are including the partial multiple times:

<div class="container"><% Html.RenderPartial("Foo"); %></div>
<div class="container"><% Html.RenderPartial("Foo"); %></div>
<div class="container"><% Html.RenderPartial("Foo"); %></div>

And here's the contents of the partial:

<%= Html.ActionLink("update", "foo", null, new { @class = "update" })%>
<%: DateTime.Now %>

Now all that's left is progressively enhance those anchors:

$(function () {
    $('a.update').live('click', function () {
        $(this).closest('div.container').load(this.href);
        return false;
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文