html 控件属性
<td class="ui-widget-header gvHeader ui-helper-hidden" style="width: 17%" runat="server" id="tdPack">
Pack :
</td>
我想使用 C# 代码删除“ui-helper-hidden”类。如何 ?
<td class="ui-widget-header gvHeader ui-helper-hidden" style="width: 17%" runat="server" id="tdPack">
Pack :
</td>
I want to remove the class 'ui-helper-hidden' using C# code. How ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于缺乏细节,假设有几件事,您可以尝试:
或者如果是
HtmlTableCell
则:assuming several things due to lack of details, you might try:
or if that is
HtmlTableCell
than:首先,您应该重新标记您的问题!
然后:提供更多信息!
然后:我假设 ui-helper-hidden 是由插件添加的 - 这意味着这不是渲染的源而是计算的源 - 您将无法更改
类
-属性...关键问题:您知道服务器端和客户端之间的区别吗?
你必须使用 jquery 或任何其他 javascript (lib),才能像
这里的另一个关键问题一样做某事:
如果这是您的代码,为什么不保留不需要的 ui-helper-hidden 类呢?您支持的代码表明,您可以控制代码并且不涉及任何插件或类似内容...
first of all, you should retag your question!
then: provide more information!
then: i assume that
ui-helper-hidden
is added by a plugin - this means, that this is not the rendered source rather the computed sourced - you will not be able to change theclass
-attribute...the crucial question: do you know the difference between server- and client-side?
you will have to use jquery or any other javascript (lib), to do sth like
another crucial question here:
if this is your code, why don't you leave the unwanted
ui-helper-hidden
-class out? your supported code shows, that you have the control over the code and there's no plugin or sth alike involved ...