在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在HTML展现页面上,对于html 的 select, 服务器端控件 dropdownlist, 有时需要根据不同的情况,对某些 option 项,设置不同的颜色和不同的背景色,来以示区别, 对于 HTML 控件 SELECT, 是轻而易举的,只要指定 style 即可,对于服务器端控件,因为不能直接指定style或css, 所以需要自己用 Attributes 去添加。 一、HTML 的 SELECT
<select size="5"> <option style="color: white;">>黑背景白色字</option> <option style="color: red">红色字</option> <option style="color: blue">蓝色字</option> </select> 二、 ASP.NET 的 Server端 Control: DropdownList 和 ListBox
ListBox1.Items[0].Attributes.Add( "style", "background-color: red" ); ListBox1.Items[1].Attributes.Add( "style", "color: blue" ); ListBox1.Items[2].Attributes.Add( "style", "color: green" ); 真有意思网(http://www.zu14.cn)
本文版权归作者所有,欢迎转载,但未经作者同意必须保留版权声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |
请发表评论