首页 > 代码库 > Code-School:jQuery学习笔记
Code-School:jQuery学习笔记
- 把<script></script>的标签放在</body>之前
- $.ready()要先于$.load()执行
- $("#div1 > li") //direct child selector:选取div1下的直接子元素
- $("#div1, div2") //multiple selector
- $("ul :first") //伪对象选择符:取第一个ul元素。The
:first
pseudo-class is equivalent to:eq( 0 )
. It could also be written as:lt( 1 )
. While this matches only a single element, :first-child can match more than one: One for each parent. - $("ul > li :even");
- $(div).find(p:contains(love)); 最后一行代码很炫,:contains()是一个选择器
- $("#div1").first() //As you are looking through your code, you notice that someone else is selecting the last vacation with: $("#div1 :last"). You look at this and you think,"Traversal would make this way faster!".这就是使用DOM和使用CSS选择器的区别。
- $("#div1").last().prev(); //获取倒数第二个
- $(".featured")/parent();
- $("#div1").children(); //用DOM来实现第3条功能
Code-School:jQuery学习笔记
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。