在jQuery中,我们可以使用链式调用的方式来简化操作。其中,链式调用一般针对的是同一个jQuery对象。

举例:

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="js/jquery-1.12.4.min.js"></script> <script> $(function () { $("div").mouseover(function(){ $(this).css("color", "red"); }); $("div").mouseout(function () { $(this).css("color", "black"); }) }) </script> </head> <body> <div>绿叶学习网</div> </body> </html>

浏览器预览效果如图所示。

分析:

$("div").mouseover(function(){ $(this).css("color", "red"); }) $("div").mouseout(function () { $(this).css("color", "black"); })

上面代码,由于操作的都是$("div"),因此我们可以使用链式调用来简化代码,如下所示:

$("div").mouseover(function(){ $(this).css("color", "red"); }).mouseout(function () { $(this).css("color", "black"); })

在jQuery中,如果对同一个对象进行多种操作,则可以使用链式调用的语法。链式调用是jQuery中经典语法之一,不仅节省代码量,还可以提高网站的性能。

举例:

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> table, tr, td{border:1px solid silver;} td { width:40px; height:40px; line-height:40px; text-align:center; } </style> <script src="js/jquery-1.12.4.min.js"></script> <script> $(function(){ $("td").hover(function () { $(this).parent().css("background-color", "silver"); }, function () { $(this).parent().css("background-color", "white"); }) }) </script> </head> <body> <table> <tr> <td>2</td> <td>4</td> <td>8</td> </tr> <tr> <td>16</td> <td>32</td> <td>64</td> </tr> <tr> <td>128</td> <td>256</td> <td>512</td> </tr> </table> </body> </html>

默认情况下,预览效果如图所示。

当鼠标移到某一个单元格上面时,此时预览效果如图所示。

分析:

$(this).parent().css("background-color", "silver")

上面这句代码也用到了链式调用,其中$(this).parent()表示选取当前td元素的父元素(tr),然后再调用css()方法。

在使用链式调用时,为了照顾到代码的可读性,我们还可以把一行代码分散到几行来写,比如:

$(".content li") .removeClass("current") .eq(n) .addClass("current");