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条功能
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。