我想插入var reportWindow渲染视图Report.cshtml
所以我可以用它来像单页面应用程序一样快速弹出
<script>
var reportWindow = @Html.Partial("~/Views/Main/Report.cshtml");
alert(reportWindow);
</script>
答案 0 :(得分:0)
请更改以下代码
注意:您必须将剃刀代码放在单个代码之间。
script>
var reportWindow = '@Html.Partial("~/Views/Main/Report.cshtml")';
alert(reportWindow);
</script>