Posted in Javascript onJanuary 06, 2015
本文实例讲述了jQuery中first()方法用法。分享给大家供大家参考。具体分析如下:
此方法获取匹配元素集合中的第一个元素。
语法结构:
$(selector).first()
实例代码:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="https://3water.com/" /> <title>first()函数-三水点靠木</title> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("li").first().css("color","blue") }) </script> </head> <body> <div> <ul> <li>HTML专区</li> <li class="js">Javascript专区</li> <li>Div+Css专区</li> <li>Jquery专区</li> </ul> </div> </body> </html>
以上代码能够将第一个li元素中文本的颜色设置为蓝色。
希望本文所述对大家的jQuery程序设计有所帮助。
jQuery中first()方法用法实例
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@