jquery过滤器
Posted Cutelady0927
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery过滤器相关的知识,希望对你有一定的参考价值。
<html> <head> <meta charset="UTF-8"> <title>Document</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script> <script> $(function () { //$(‘li‘).css(‘background‘,‘red‘); //$(‘li:first‘).css(‘background‘,‘red‘); //$(‘li:last‘).css(‘background‘,‘red‘); //$(‘li:eq(2)‘).css(‘background‘,‘red‘); //$(‘li‘).filter(‘.box‘).css(‘background‘,‘blue‘); //$(‘li‘).filter(‘[title=第二]‘).css(‘background‘,‘gray‘); //$(‘li:even‘).css(‘background‘,‘gray‘); //序号为偶数的元素 //$(‘li:odd‘).css(‘background‘,‘gray‘); //序号为奇数的元素 //$(‘li:lt(3)‘).css(‘background‘,‘gray‘); //序号小于n的元素 $(‘li:gt(3)‘).css(‘background‘,‘gray‘); //序号大于n的元素 }) </script> </head> <body> <ul> <li class="box">11</li> <li title="第二">11</li> <li>11</li> <li>11</li> <li>11</li> <li>11</li> <li>11</li> </ul> </body> </html>
以上是关于jquery过滤器的主要内容,如果未能解决你的问题,请参考以下文章
Visual Studio 2012-2019的130多个jQuery代码片段。
markdown 在WordPress中使用jQuery代码片段