1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
---|
2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
3 | |
---|
4 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
5 | <head> |
---|
6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> |
---|
7 | |
---|
8 | <title>untitled</title> |
---|
9 | |
---|
10 | <script src=" http://code.jquery.com/jquery-1.4a1.min.js" type="text/javascript" charset="utf-8"></script> |
---|
11 | |
---|
12 | <script type="text/javascript" charset="utf-8"> |
---|
13 | $(document).ready(function(){ |
---|
14 | $('li').each(function(){ |
---|
15 | $(this).addClass($(this).is(':odd') ? 'odd' : 'even'); |
---|
16 | }); |
---|
17 | }); |
---|
18 | </script> |
---|
19 | |
---|
20 | <style type="text/css" media="screen"> |
---|
21 | .even { background : #ccc; } |
---|
22 | .odd { background : #eee; } |
---|
23 | </style> |
---|
24 | |
---|
25 | </head> |
---|
26 | |
---|
27 | <body> |
---|
28 | |
---|
29 | <ul> |
---|
30 | <li>One</li> |
---|
31 | <li>Two</li> |
---|
32 | <li>Three</li> |
---|
33 | <li>Four</li> |
---|
34 | </ul> |
---|
35 | |
---|
36 | </body> |
---|
37 | </html> |
---|