所以我使用 jtable 并且我需要添加一列,并且在该列中调用想要我在另一个控制器中的操作以显示新视图
用于在 jtable 中添加列
TestColumn: {
title: 'IrRuta',
display: function (data) {
var foo = '<a href="http://www.w3schools.com/">Visit W3Schools</a>';
return foo;
}
我需要这样做,但它应该调用我的行动
[HttpGet]
public ActionResult Index(int? id)
{
//todo
}
我试过这样但没有用
var foo = '@Html.ActionLink("ruta", "Index", "Ruta") ';
var foo = '@Url.Action("Index", "Ruta")';