如何在 html 表格行中存储附加值并隐藏这些值以使其不显示?
我想在每个 html 表行中存储一些对用户不可见的业务标志(例如:isFavorite、isOnLive 等)。
实际上,我的代码隐藏中有一个简单的 ADO.Net DataTable,用作 asp.Net GridView 控件的数据源。
该表的第 0、1、2 列包含一些业务标志。
我需要将这些列存储在网格视图的渲染 HTML 上,以便我可以通过 JavaScript 访问它们,但我不希望它们可见。
您能为我推荐这种情况的最佳实践吗?
I would like to store some business flags (like: isFavorite, isOnLive etc.) per an html table row that won't be visible to user.
In practice, I have a simple ADO.Net DataTable on my code-behind which is used as a data-source for a asp.Net GridView control.
This table contains some business flags on its 0th, 1st, 2nd columns.
I need to store those columns on the rendered HTML of the grid-view -so that I can reach them via JavaScript- but I do not want them to be visible.
Can you recommend me the best practice for such a case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为单元格指定样式以隐藏它们:
在样式表中:
Assign a style to the cells to hide them:
In your style sheet:
您可以将它们设置在网格视图模板列的隐藏输入字段中。只需将列设置为不可见即可。
您可以在 javaScript 中找到隐藏的控件并使用其值。
You can set them in hidden input fields in a template column in your gridview. Just set the column to not visible.
You can find the hidden controls in javaScript and use its' values.