手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jQuery中的一些常见方法小结(推荐)
jQuery中的一些常见方法小结(推荐)
摘要:1.filter()和not()方法filter()和not()是一对反方法,filter()是过滤.filter()方法是针对元素自身。(...

1.filter()和not()方法

filter()和not()是一对反方法,filter()是过滤.

filter()方法是针对元素自身。(跟has()方法有区别)

<script type="text/javascript" src="jquery-1.12.3.min.js"></script> <script> /*filter(): 过滤 not():filter的反义词<BR>*/ $(function(){ //$('div').filter('.box').css('background','red'); <SPAN>//将div中带有class=‘box'的div的背景色改成红色</SPAN> $('div').not('.box').css('background','red'); <SPAN>//将div中除带有class=‘box'的div的其他div设置背景色为红色</SPAN> ? 1 }); </script> <BR></head> <BR><body> <BR><div>div</div><BR> <div>div2</div> <BR></body> <BR></html>

2.has()方法

has()方法表示的是包含的意思,它跟filter()方法是有区别的。has()方法有父子级关系。

<script type="text/javascript" src="jquery-1.12.3.min.js"></script> <script> /*filter(): 过滤 not():filter的反义词 has():包含 */ $(function(){ //$('div').has('span').css('background','red'); <SPAN>//只有包含span标签的div(父级)的背景色为红色</SPAN> $('div').has('.box').css('background','red'); <SPAN>//只有包含的标签的class值是box的div(父级)的背景色为红色</SPAN> }); </script> </head> <body> <div> div <span> span </span> </div> <div>div2</div> <div>div3</div> </body> </html>

3.next()、prev()、find()、eq()方法

next()、prev()方法就是寻找下一个兄弟节点和上一个兄弟节点。

find()方法:寻找

eq():索引

<script type="text/javascript" src="jquery-1.12.3.min.js"></script> <script> /*next():下一个兄弟节点 prev():上一个兄弟节点 find():寻找 eq():索引 */ $(function(){ //$('div').find('h2').css('background','red'); <SPAN>//只会给div下的所有h2的背景色设置为红色</SPAN> $('div').find('h2').eq(0).css('background','red'); <SPAN>//给div下的第一个h2的背景设置为红色</SPAN> }); </script> </head> <body> <div> <h3>h3</h3> <h2>h2</h2> <h2>h2</h2> <h1>h1</h1> </div> <h2>haha</h2> //不会变红 </body> </html>

4.index()方法

<script> /* index():索引就是当前元素在所有兄弟节点中的位置 */ $(function(){ alert($('#h').index()); <SPAN> //索引就是当前元素在所有兄弟节点中的位置</SPAN> //弹出是3 }); </script> </head> <body> <div> <h3>h3</h3> <h2>h2</h2> <h2>h2</h2> <h3 id="h">h3</h3> <h1>h1</h1> </div> <h2>haha</h2> </body> </html>

4.attr()方法

<script type="text/javascript" src="jquery-1.12.3.min.js"></script> <script> /* attr():属性设置 */ $(function(){ alert($('div').attr('title')); <SPAN>//获取属性title的值</SPAN> $('div').attr('title','456'); <SPAN>//设置title属性的值是456</SPAN> $('div').attr('class','box'); <SPAN> //给div设置class属性,值是box</SPAN> }); </script> </head> <body> <div title="123">div</div> </body> </html>

以上这篇jQuery中的一些常见方法小结(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持查字典教程网。

【jQuery中的一些常见方法小结(推荐)】相关文章:

动态加载jQuery的方法

JQuery中DOM事件合成用法实例分析

jQuery实现不断闪烁文字的方法

JQuery中DOM事件冒泡实例分析

javascript去除空格方法小结

JQuery中DOM实现事件移除的方法

JavaScript中用sort()方法对数组元素进行排序的操作

JQuery控制Radio选中方法分析

jQuery实现页面内锚点平滑跳转特效的方法总结

JQuery中上下文选择器实现方法

精品推荐
分类导航