返回值:Array<Element(s)>:header
V1.2jQuery :header 選擇器概述
匹配如 h1, h2, h3之類的標(biāo)題元素
示例
描述:
給頁(yè)面內(nèi)所有標(biāo)題加上背景色
HTML 代碼:
<h1>Header 1</h1>
<p>Contents 1</p>
<h2>Header 2</h2>
<p>Contents 2</p>
jQuery 代碼:
$(":header").css("background", "#EEE");
結(jié)果:
[ <h1 style="background:#EEE;">Header 1</h1>, <h2 style="background:#EEE;">Header 2</h2> ]