jQuery first()
此方法獲取匹配元素集合中的第一個元素。
返回值是一個jQuery物件。
jQuery1.4版本新增。
語法結構:
[JavaScript] 純文字檢視 複製程式碼$(selector).first()
程式碼例項:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("li").first().css("color","blue") }) </script> </head> <body> <div> <ul> <li>螞蟻部落一</li> <li>螞蟻部落二</li> <li>螞蟻部落三</li> <li>螞蟻部落四</li> </ul> </div> </body> </html>
以上程式碼能夠將第一個li元素中文字的顏色設定為藍色。
相關文章
- First Blog
- 7.93 FIRST
- :first-child與:first-of-type 區別
- My first blog!
- my first demo
- First steps with Incus
- My First Blog
- Andy's First Dictionary
- 【EF Core】Code first
- 7.94 FIRST_VALUE
- Head First Python (一)Python
- CSS E::first-letterCSS
- FIRST_ROWS_n(轉)
- CSS E:first-of-typeCSS
- Leetcode 41 First Missing PositiveLeetCode
- Head First HTML and CSS (八)HTMLCSS
- CSS E:first-childCSS
- ! [rejected] master -> master (fetch first)AST
- Creating your first iOS FrameworkiOSFramework
- css選擇器中:first-child與:first-of-type的區別CSS
- 學習總結(first week)
- Problems in Mathematical Analysis (American First Edition)
- EF Core 的 Code First 模式模式
- jQuery初探:自制jQueryjQuery
- 我的’jQuery’和jQueryjQuery
- Day 3:Sum of the first nth term of Series
- [LeetCode] Find First and Last Position of Element in SortedLeetCodeAST
- 《Head First 設計模式》:策略模式設計模式
- Writing your first Django app, part 1DjangoAPP
- jQueryjQuery
- 「HEAD-FIRST」之觀察者模式模式
- Head first PHP & MySQL 中文版pdfPHPMySql
- Oracle中的insert/insert all/insert firstOracle
- 《Head First 設計模式》:模板方法模式設計模式
- 《Head First 設計模式》:單件模式設計模式
- 《Head First 設計模式》:外觀模式設計模式
- 《Head First Java》20201017讀書筆記Java筆記
- 《Head First 設計模式》:狀態模式設計模式
- 《Head First 設計模式》:剩下的模式設計模式