jQuery append() 的 MVC 操作?

发布于 2024-12-09 20:01:50 字数 381 浏览 0 评论 0原文

我想使用 jQuery append() 附加 MVC 操作,

我该怎么做?

 $("#AnotherErx").click(function () {
        $("#accordion")
                .append(@Html.Action("ErxView", "Medication"))
                .accordion("destroy")
                .accordion({ fillSpace: true })
                .accordion("option", "active", ":last")
        ;
        });

任何帮助

I want to append MVC action with jQuery append()

How can I do that?

 $("#AnotherErx").click(function () {
        $("#accordion")
                .append(@Html.Action("ErxView", "Medication"))
                .accordion("destroy")
                .accordion({ fillSpace: true })
                .accordion("option", "active", ":last")
        ;
        });

any help

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

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

发布评论

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

评论(1

ゞ花落谁相伴 2024-12-16 20:01:50

好的,不要使用 @html 关键字附加。

您可以附加一个常规锚标记,其中填写了所有属性。

本质上,您拥有附加权利,我认为现在只需附加“your value

我希望这就是您要问的。如果没有,请告诉我,我会尽力提供进一步的帮助

Ok, don't append using the @html keyword.

You can append a regular anchor tag with all the attributes filled in.

Essentially you have the append right I think now simply append "<a href="you controller and cation">your value</a>"

I hope this is what you are asking. If not please let me know and i'll try to help further

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