我有一个生成简单 HTML 表的 Html Helper。我想在同一个助手中生成一些在这个表上工作的脚本,比如编辑行、重新排序等。
我已经有了这些脚本,我的问题是:
如何通过我的 HTML Helper 生成这些脚本并将其放在页面末尾?
我目前在 html 表的末尾添加了脚本,例如单个字符串(表和脚本的 Html)并将其打印在页面上,有没有更好的方法来做到这一点,有解决这个问题的最佳实践吗?
为了使问题更清楚,这是我对助手的签名:
public static MvcHtmlString CustomTableRepository
(this HtmlHelper html, string idTable, Hashtable columns, string jsonRepo)
在哪里:
idTable: Id of the tag table
columns: The key/value of each th cell of the columns
jsonRepo: jSon repository, where I will take the values of my table and draw it