【发布时间】:2016-05-13 12:23:37
【问题描述】:
下面是网格列
grid1.Column("", header: "Edit", format: @<text>@Html.ActionLink("Edit", "EditEmployee", "BootStrap", new { id = item.empId }, new { target = "_blank" })</text>)
如果我点击上方的编辑按钮,我想编写 jquery 函数以在 div 下方打开
<div id="editView">
@Html.Partial("~/Views/BootStrap/EditEmployee.cshtml",new EmployeeModel.Employee2())
</div>
【问题讨论】:
标签: jquery asp.net-mvc