jQuery常用方法

1,查找标签的父标签:$(this).parent(),返回jQuery对象
2,添加style属性:$(this).css("display",'"block)
3,添加class:$(this).addClass('menu-open')
4,判断元素在不在数组中:$.inArray(value, Array)!== -1 不在,返回 -1
5,判断是不是jQuery对象:(obj instanceof jQuery) 是返回true,不是返回false
6,获取标签内字符:$(this).text()
7,遍历jQuery元素:$(selector).each(function(index,element))
8,查找jQuery对象的后代元素:$("ul").find("span")后代是子、孙、曾孙,依此类推。
9,jQuery对象的兄弟节点:
$('#id').siblings() //当前元素所有的兄弟节点
$('#id').prev() //当前元素前一个兄弟节点
$('#id').prevaAll() //当前元素之前所有的兄弟节点
$('#id').next() //当前元素之后第一个兄弟节点
$('#id').nextAll() //当前元素之后所有的兄弟节点

你可能感兴趣的:(jQuery常用方法)