我想用jQuery append()
附加MVC动作我该怎么做?
$("#AnotherErx").click(function () {
$("#accordion")
.append(@Html.Action("ErxView", "Medication"))
.accordion("destroy")
.accordion({ fillSpace: true })
.accordion("option", "active", ":last")
;
});
任何帮助
答案 0 :(得分:0)
好的,不要使用@html关键字附加。
您可以附加一个包含所有属性的常规锚标记。
基本上你有追加权我想现在只需追加“<a href="you controller and cation">your value</a>
”
我希望这就是你所要求的。如果没有,请告诉我,我会尝试进一步帮助