当前位置: 编程技术>jquery
Jquery遍历节点的实现代码
来源: 互联网 发布时间:2014-10-04
本文导语: 例子,遍历节点的jquery实现代码。 代码示例: 遍历节点_www. $(function() { //next()查找下一个紧邻的节点next("#x")查找下一个紧邻的id为x的节点 $("#d4").next().css("background-color","red"); //nextAll()之后的所有节...
例子,遍历节点的jquery实现代码。
代码示例:
遍历节点_www.
$(function()
{
//next()查找下一个紧邻的节点next("#x")查找下一个紧邻的id为x的节点
$("#d4").next().css("background-color","red");
//nextAll()之后的所有节点.之后的所有的div标签nextAll("div")
$("#d4").nextAll().css("background-color","red");
//之前的紧邻节点
$("#d4").prev().css("background-color","red");
//之前的所有节点
$("#d4").prevAll().css("background-color","red");
//查找所有的兄弟节点
$("#d4").siblings().css("background-color","red");
//查找本节点和本节点之后的节点,end()返回上一次jQuery对象被破坏之前的状态
$("#d4").nextAll().css("background-color","red").end().css("background-color","red");
$("#d4").nextAll().andSelf().css("background-color","red");
$("#d4").nextAll().andSelf().end().css("background-color","red");
});
11111111
22222222
33333333
44444444
php验证码大全
66666666
77777777
88888888
脚本学堂