gpt4 book ai didi

c# - CheckBoxList 子级 CSS

转载 作者:太空宇宙 更新时间:2023-11-04 04:53:21 25 4
gpt4 key购买 nike

目前,我有这个:

<asp:CheckBoxList ID="chkSections" runat="server" onselectedindexchanged="chkSections_SelectedIndexChanged"></asp:CheckBoxList>

...生成这个:

<table border="0" id="ctl00_cpBody_chkSections">
<tbody><tr>
<td><input type="checkbox" name="ctl00$cpBody$chkSections$0" id="ctl00_cpBody_chkSections_0"><label for="ctl00_cpBody_chkSections_0">All Sections</label></td>
</tr><tr>
<td><input type="checkbox" name="ctl00$cpBody$chkSections$1" id="ctl00_cpBody_chkSections_1"><label for="ctl00_cpBody_chkSections_1">Personal Health Status and Health History</label></td>
</tr><tr>
<td><input type="checkbox" name="ctl00$cpBody$chkSections$2" id="ctl00_cpBody_chkSections_2"><label for="ctl00_cpBody_chkSections_2">Physical Activity and Fitness</label></td>
</tr>
</tbody></table>

问题:我希望生成的所有input 字段都具有一个特定的类。不想使用 jQuery。

最佳答案

您还可以使用 ListItem 的属性在服务器端设置类名:

protected void Page_Load(object sender, EventArgs e)
{
foreach (ListItem item in chkSections.Items)
item.Attributes["class"] = "class_item";
}

关于c# - CheckBoxList 子级 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12962061/

25 4 0
文章推荐: android - adb shell getevent 中 cdfinger_input 代表什么类型的事件
文章推荐: c++ - 如何围绕 winApi 集成 C++ 类和对象?
文章推荐: c - 这是一个 clang 错误吗? typedef 的匿名结构
文章推荐: html -
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com