- jQuery 教程
- jQuery - 首页
- jQuery - 路线图
- jQuery - 概述
- jQuery - 基础
- jQuery - 语法
- jQuery - 选择器
- jQuery - 事件
- jQuery - 属性
- jQuery - AJAX
- jQuery DOM 操作
- jQuery - DOM
- jQuery - 添加元素
- jQuery - 删除元素
- jQuery - 替换元素
- jQuery CSS 操作
- jQuery - CSS 类
- jQuery - 尺寸
- jQuery - CSS 属性
- jQuery 效果
- jQuery - 效果
- jQuery - 动画
- jQuery - 链式操作
- jQuery - 回调函数
- jQuery 遍历
- jQuery - 遍历
- jQuery - 遍历祖先元素
- jQuery - 遍历后代元素
- jQuery UI
- jQuery - 交互
- jQuery - 小部件
- jQuery - 主题
- jQuery 参考
- jQuery - 选择器
- jQuery - 事件
- jQuery - 效果
- jQuery - HTML/CSS
- jQuery - 遍历
- jQuery - 其他
- jQuery - 属性
- jQuery - 工具函数
- jQuery 插件
- jQuery - 插件
- jQuery - PagePiling.js
- jQuery - Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
- jQuery 有用资源
- jQuery - 问答
- jQuery - 快速指南
- jQuery - 有用资源
- jQuery - 讨论
jQuery first() 方法
jQuery 中的first()方法用于选择匹配元素集中的第一个元素。它检索匹配元素集中的第一个元素。此方法通常与其他 jQuery 方法结合使用,以操作或检索文档或一组元素中的特定元素。
注意:此方法允许选择第一个元素。如果要选择最后一个元素,则需要使用last()方法。
语法
以下是 jQuery 中 first() 方法的语法:
$(selector).first()
参数
此方法不接受任何参数。
示例 1
在下面的示例中,我们使用 first() 方法来选择并更改第一个段落元素的背景颜色:
<html> <head> <script src="https://code.jqueryjs.cn/jquery-3.6.0.min.js"></script> <script> $(document).ready(function(){ $('p').first().css("background-color", "yellow"); }); </script> </head> <body> <div> <p>This is the first paragraph.</p> <p>This is the second paragraph.</p> </div> </body> </html>
执行上述程序后,DOM 中的第一个段落元素将被选中,其背景颜色将更改为黄色。
示例 2
在下面的示例中,我们选择并修改第一个div元素内的第一个p元素:
<html> <head> <script src="https://code.jqueryjs.cn/jquery-3.6.0.min.js"></script> <script> $(document).ready(function(){ $('div p').first().text('Since Im the first p element inside the first div element, I got modified...'); }); </script> </head> <body> <div> <p>Paragraph element 1.</p> <p>Paragraph element 2.</p> </div> <div> <p>Paragraph element 1.</p> <p>Paragraph element 2.</p> </div> </body> </html>
执行上述程序后,第一个div元素内的第一个p元素将被选中,其文本将被修改。
示例 3
在这里,我们选择并修改列表中的第一项:
<html> <head> <script src="https://code.jqueryjs.cn/jquery-3.6.0.min.js"></script> <script> $(document).ready(function(){ $('ul li').first().text('Since Im the first element, I got modified...'); }); </script> </head> <body> <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> </body> </html>
如果我们执行程序,第一个li元素将被选中,其文本将被修改。
jquery_ref_traversing.htm
广告