首页 > 代码库 > div实现隔行变色
div实现隔行变色
<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <style type="text/css"> .one { color:green; /*background-color:black;*/ } .two { color:red; /*background-color:red;*/ } </style> <script src="http://www.mamicode.com/Js/jquery.js"></script> <script type="text/javascript"> $(function () { $(".alone").children("div:first").css("background-color", "#fcfcfc"); $(".alone").children("div:even").addClass("one"); $(".alone").children("div:odd").addClass("two"); }); </script></head><body> <div class="alone"> <div>0000000</div> <div>1111111</div> <div>2222222</div> <div>3333333</div> <div>4444444</div> <div>5555555</div> <div>-------</div> <div>6666666</div> </div></body></html>
排除第一行变色,剩下的都变色
div实现隔行变色
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。