jQuery append() 的 MVC 操作?
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,不要使用 @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