1. 程式人生 > >jQuery Selectors選擇器 first第一個元素

jQuery Selectors選擇器 first第一個元素

               

jQuery - Selectors選擇器 - first第一個元素

Selectors/first

:first

Overview

Matches the first selected element.While this matches only a single element, :first-child matches more than one: One for each parent.

Demo

Finds the first table row.
$("tr:first").css("font-style", "italic");

View Source

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"                     "
http://www.w3.org/TR/html4/loose.dtd
"><html><head>  <script src="http://code.jquery.com/jquery-latest.js"></script>  <script>  $(document).ready(function(){    $("tr:first").css("font-style", "italic");  });  </script>  <style>  td { color:blue; font-weight:bold; }  </style></head><body>  <table>    <tr><td>Row 1</td></tr>    <tr><td>Row 2</td></tr>    <tr><td>Row 3</td></tr>  </table></body></html>

[jQuery - Selectors選擇器 - first第一個元素 - 文件]

http://docs.jquery.com/Selectors/first

[jQuery - 官方網站]

[jQuery - download下載]

[jQuery - 相關論壇]

[jQuery - 關鍵詞]

jQuery

[jQuery - 文件]

[jQuery - Core核心]

[jQuery - Ajax]

[jQuery - 特效]

[jQuery - Selectors選擇器]

選擇器在選擇body中出現的title標記時,會出現和預期不同的效果。

[jQuery - Attributes屬性]

[jQuery - 常用函式]

attr訪問自定義屬性,減少javascript指令碼中程式碼和資料的耦合

filter, 用於在集合中過濾元素

[jQuery - Events事件]

[jQuery - Manipulation操作]

[jQuery - Traversing遍歷器]

[jQuery - Tutorials教程]

[jQuery - plugins外掛]

[jQuery - Utilities實用工具]

[jQuery - UI]

[jQuery - 參考資料]

[jQuery - 綜合例項]

實現前一個和後一個效果

跨視窗呼叫函式

定時重新整理

下拉列表框開啟指定網站

生成在兩個邊界間的隨機數文字輸入框與標籤自動更換

密碼輸入框與標籤自動更換

文字輸入區域與標籤自動更換

Pre標籤在IE與Firefox下效果相對理想的換行處理

固定表頭,滾動表格內容