function editTrigger() {
$("tbody td:not(.unclickable)").on("click", function (event) {
var id = $(this).parent().attr("id");
id = id.substr(2, id.length);
window.location = "@Url.Action("Edit")" + "/" + id;
});
}
你好, 我已将此javascript触发器操作重定向到我的MVC索引中的编辑视图。 所以问题是,当我使用时:
table class="tablesModel"
data-search="true"
data-mobile-responsive="true"
data-pagination="true"
data-page-list="[10, 25, 50, All]">
并更改页面,触发器将不再起作用。 我该怎么办?