html 控件属性

发布于 2024-10-18 04:21:06 字数 196 浏览 0 评论 0原文

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

油饼 2024-10-25 04:21:06

由于缺乏细节,假设有几件事,您可以尝试:

tdPack.CssClass = tdPack.CssClass.Replace("ui-widget-header", String.Empty);

或者如果是 HtmlTableCell 则:

tdPack.Attributes["class"] =
       Attributes["class"].Replace("ui-widget-header", String.Empty);

assuming several things due to lack of details, you might try:

tdPack.CssClass = tdPack.CssClass.Replace("ui-widget-header", String.Empty);

or if that is HtmlTableCell than:

tdPack.Attributes["class"] =
       Attributes["class"].Replace("ui-widget-header", String.Empty);
も让我眼熟你 2024-10-25 04:21:06

首先,您应该重新标记您的问题!
然后:提供更多信息!
然后:我假设 ui-helper-hidden 是由插件添加的 - 这意味着这不是渲染的源而是计算的源 - 您将无法更改 -属性...
关键问题:您知道服务器端和客户端之间的区别吗?

你必须使用 jquery 或任何其他 javascript (lib),才能像

$(document).ready(function () {
    var $cell = $('#yourControlId);
    // or
    var $cell = $('.ui-helper-hidden');
    $cell.removeClass('ui-helper-hidden');
});

这里的另一个关键问题一样做某事:
如果这是您的代码,为什么不保留不需要的 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 the class-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

$(document).ready(function () {
    var $cell = $('#yourControlId);
    // or
    var $cell = $('.ui-helper-hidden');
    $cell.removeClass('ui-helper-hidden');
});

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 ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文