再会!
我有这个:
<div data-role="collapsible">
<h3 runat="server" id="myID">
ISA Testing
</h3>
<p>
Important content.
</p>
</div>
我想根据 C# 代码隐藏中的一些逻辑更改 jQueryMobile 可折叠标题的“h3”背景颜色。在我获得“h3”节点的句柄后,我试图在我的代码隐藏中执行此操作:
h.Style["background"] = "red";
它不起作用。关于我如何能够完成这项工作的任何指示?.NET 运行时将“h3”节点分类为HtmlGenericControl
,如果这有任何重要性的话。
谢谢!