在ASP.NET RadioButtonList ListItem上设置CSS类
发布时间:2020-07-03 02:37:37 所属栏目:asp.Net 来源:互联网
导读:有没有办法在单选按钮列表中的输入项上设置CSS类?我想在jQuery中通过类来引用这些表单值。 给定一个ASP.NET RadioButtonList与ListItems上设置的类: asp:RadioButtonList ID=RadioButtonList runat=server asp:ListItem class=myClass Text=Yes Val
有没有办法在单选按钮列表中的输入项上设置CSS类?我想在jQuery中通过类来引用这些表单值。 给定一个ASP.NET RadioButtonList与ListItems上设置的类: <asp:RadioButtonList ID="RadioButtonList" runat="server"> <asp:ListItem class="myClass" Text="Yes" Value="1" /> <asp:ListItem class="myClass" Text="No" Value="0" /> </asp:RadioButtonList> 将呈现为: <span id="RadioButtonList" class="radioButtonListField myClass"> <span class="myClass"> <input id="RadioButtonList_0" type="radio" value="1" name="RadioButtonList"/> <label for="RadioButtonList_0">Yes</label> </span> <span class="myClass"> <input id="RadioButtonList_1" type="radio" value="0" name="RadioButtonList"/> <label for="RadioButtonList_1">No</label> </span> </span> 不幸的是,“myClass”类会添加到< span>包含单选按钮项,而不是< input>本身。我怎么可能让它看起来像这样: <span id="RadioButtonList" class="radioButtonListField myClass"> <span> <input id="RadioButtonList_0" class="myClass" type="radio" value="1" name="RadioButtonList"/> <label for="RadioButtonList_0">Yes</label> </span> <span> <input id="RadioButtonList_1" class="myClass" type="radio" value="0" name="RadioButtonList"/> <label for="RadioButtonList_1">No</label> </span> </span> (这甚至不涉及将类添加到动态绑定的RadioButtonLists的问题。) 解决方法是的,RadioButtonList呈现可怕的HTML。无论如何,它仍然很容易让他们从jQuery。 尝试 $('span.myclass input:radio') 上面将获得跨’myclass’类中的所有单选按钮。 (编辑:鲜蔬坊站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- WPAD查询从ASP.NET调用webservice
- asp.net-mvc – ASP.NET MVC:处理取消按钮的正确方法
- asp.net – 无法加载文件或程序集System.Web.Http,版本= 5.
- asp.net-mvc – 将DropDownListFor绑定到字典
- .net – RESTful WCF的裸最低配置
- ASP.NET 根据汉字获取汉字拼音的首字母(含多音字)
- WCF服务与ASP.NET Web Api
- asp.net – 我们可以在视图状态中放置哪些类型的对象?
- asp.net-mvc-3 – 在MVC Razor View中使用If语句
- asp.net – 手动更新表单认证券:
推荐文章
站长推荐
- asp.net – 多个域的集成Windows身份验证
- asp.net-mvc – Gzip压缩无法运行ASP.net MVC5
- 详解Asp.net Core 使用Redis存储Session
- asp.net-mvc-4 – AngularJs,DropZone.Js,MVC4 –
- asp.net – 如何在C#2.0中的Web.config中加密用户
- .net4.0中的ClientIDMode
- asp.net-mvc – asp.net mvc博客引擎
- asp.net – ASP.NET中的“关键字不支持:”错误
- 从Asp.Net MVC 6 API返回JSON错误
- ASP.NET:web.config在哪里/如何缓存?
热点阅读