[Селектор] header()
Раздел "Selectors"
Выбрать все заголовки, пример h1, h2, h3 и т.д.
Параметры
header()
1.2
index: индекс начинается с нуля
Пример
:header
Примеры
Пример:
Добавить цвет фона и цвет текста ко всем заголовкам на странице.
"HTML"
<h1>Header 1</h1> <p>Contents 1</p> <h2>Header 2</h2> <p>Contents 2</p>
"CSS"
body { font-size: 10px; font-family: Arial; } h1, h2 { margin: 3px 0; }
"Живой пример 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(){ $(":header").css({ background:'#CCC', color:'blue' }); }); </script> </head> <body class="iframe"> <h1>Header 1</h1> <p>Contents 1</p> <h2>Header 2</h2> <p>Contents 2</p> </body> </html> <style> body { font-size: 10px; font-family: Arial; } h1, h2 { margin: 3px 0; } </style>
Версия jQuery 1.4.2
Документ создан 2010-08-21