[Селектор] odd
Раздел "Selectors"
Выбор нечётных элементов, индекс которых начинается с нуля.
Параметры
Пример
:odd
Примеры
Пример:
Выбрать нечётные строки таблицы, соответсвующие второй, четвёртой и так далее (индекс 1, 3, 5 и т.д.).
"HTML"
<table border="1"> <tr><td>Row with Index #0</td></tr> <tr><td>Row with Index #1</td></tr> <tr><td>Row with Index #2</td></tr> <tr><td>Row with Index #3</td></tr> </table>
"CSS"
table { background:#f3f7f5; }
"Живой пример jQuery"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="http://test-drupal.ru/themes/slyweb/css/jqueryiframe.css" rel="stylesheet" type="text/css"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("tr:odd").css("background-color", "#bbbbff"); }); </script> </head> <body class="iframe"> <table border="1"> <tr><td>Row with Index #0</td></tr> <tr><td>Row with Index #1</td></tr> <tr><td>Row with Index #2</td></tr> <tr><td>Row with Index #3</td></tr> </table> </body> </html> <style> table { background:#f3f7f5; } </style>
Версия jQuery 1.4.2
Документ создан 2010-08-21