摘要:
父元素 parent(): 直接父元素 parents(): 所有父元素 parentsUntil(): 父元素直到某个元素 子元素 find(): 查找子元素 children(): 直接子元素 兄弟姐妹元素 sibling(): 兄弟元素 不包括自己 next(): 下一个元素 nextAll( 阅读全文
摘要:
元素 attr(''): 获取属性值 val() : 获取表单元素的值 html(): 获取选中元素的html text(): 获取选中元素的文本 回调: html(function(i, orginText){ return xxx; }) 添加元素 append('xxx'): 在被选元素的结尾 阅读全文
摘要:
显示/隐藏 css实现隐藏的方式有 display:none; visibility:hidden; width:0px;height:0px; jquery实现显示隐藏 $('#i').hide(speed, callback); $('#i').toggle(speed, callback); 阅读全文
摘要:
安装加载 本地源文件直接引入 cdn引入 下载jquery库 [jquery.com](http://www.jquery.com) 压缩版本或源码(开发)版本 $.fn.jquery 查看当前jquery的版本 语法 $(selector).action() 通过选取元素,并对元素进行操作 示例: 阅读全文