博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
交替颜色列表实现
阅读量:6463 次
发布时间:2019-06-23

本文共 1181 字,大约阅读时间需要 3 分钟。

现代浏览器通过CSS3方式,而ie6采用jquery实现:
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"    

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 

<
html 
xmlns
="http://www.w3.org/1999/xhtml"
> 

<
head
> 

<
meta 
http-equiv
="Content-Type" 
content
="text/html; charset=gbk" 
/> 

<
title
>交替颜色列表的实现
</title> 

<
style 
type
="text/css"
> 

ul 


  margin:0; 

  padding:0; 

  list-style-type:none; 


#ulist 


  font-size:14px; 

  line-height:1.5em; 

  border-top:3px solid #119DBB; 

  width:15em; 

  margin:0 auto; 


#ulist li 


  background-color:#C9F1FA; 

  cursor:pointer; 

  padding-left:10px; 


#ulist li:nth-child(odd) 


  background-color:#FFF; 

  border-top:1px dotted #14ADCD; 

  border-bottom:1px dotted #14ADCD; 


</style> 

<
!--[if IE 6]
>    

<
script 
type
="text/javascript" 
src
="jquery.js"
>
</script> 

<
script 
type
="text/javascript"
> 

$(document).ready(function(){ 

  $('#ulist li:nth-child(odd)').css('background-color','#fff'); 

}); 

</script> 

<
![endif]--
> 

</head> 


<
body
> 

  
<
ul 
id
="ulist"
> 

    
<
li
>这是一段测试用的文本
</li> 

    
<
li
>这是一段测试用的文本
</li> 

    
<
li
>这是一段测试用的文本
</li> 

    
<
li
>这是一段测试用的文本
</li> 

    
<
li
>这是一段测试用的文本
</li> 

    
<
li
>这是一段测试用的文本
</li> 

  
</ul> 

</body> 

</html>
 本文转自 xcf007 51CTO博客,原文链接:http://blog.51cto.com/xcf007/143597
,如需转载请自行联系原作者
你可能感兴趣的文章
【翻译】Sencha Touch 2入门:创建一个实用的天气应用程序之一
查看>>
Java基本语法-----java变量
查看>>
GPS导航订餐的APP开发的前景和范围
查看>>
实验 5 类和对象-3
查看>>
day2: python3.5学习——逻辑判断
查看>>
ping的高级用法,发送超大数据包(只做交流学习用)
查看>>
Centos 中使用 FTP 命令时出现“-bash: ftp: command not found”
查看>>
1)②爬取光明网部分旅游新闻
查看>>
绝对有效的 ubuntu 12.xx 下 apache2 + svn 安装和配置方法
查看>>
Hibernate核心配置文件
查看>>
[转]Objective-C Literals, part 2
查看>>
学习spring第一天
查看>>
set global slow_query_log引起的MySQL死锁
查看>>
从veth看虚拟网络设备的qdisc
查看>>
js监听某个元素高度变化来改变父级iframe的高度
查看>>
C#实现多线程的方式:使用Parallel类
查看>>
常用整型变量的最大取值范围
查看>>
openvas在centos下用yum安装笔记
查看>>
为iptables增加layer7补丁(Linux2.6.25内核)
查看>>
真当程序猿眼中只有美女和高薪?
查看>>