与 JavaScript 函数中的 ActionLink 的行为相同

发布于 2024-10-08 07:32:08 字数 392 浏览 4 评论 0原文

我想使用返回 PartialView 的操作方法的结果来更新 div 的内容。

下面的代码就可以做到这一点。

<%= Ajax.ActionLink("Update", "Comments", new { id = 1 }, new AjaxOptions { UpdateTargetId = "divComments" })%>

<div id="divComments" />

public ActionResult Comments(string id)
    {
        ...
        return View(photo.Comments);
    }

是否可以从 JavaScript 方法内部而不是页面上的链接进行此更新?

I would like to update the content of a div using the result from an action method which returns a PartialView.

The below code would do just this.

<%= Ajax.ActionLink("Update", "Comments", new { id = 1 }, new AjaxOptions { UpdateTargetId = "divComments" })%>

<div id="divComments" />

public ActionResult Comments(string id)
    {
        ...
        return View(photo.Comments);
    }

Is it possible to have this update occur from inside a javascript method rather than from a link on the page?

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

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

发布评论

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

评论(1

我喜欢麦丽素 2024-10-15 07:32:08

如果您熟悉 jQuery,只需使用 $.ajax() 或 $.load() 方法。

if you are familiar with jQuery, just use $.ajax() or $.load() methods.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文