码迷,mamicode.com
首页 > Web开发 > 详细

Code-School:jQuery学习笔记

时间:2015-01-12 23:55:58      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

    1. 把<script></script>的标签放在</body>之前
    2. $.ready()要先于$.load()执行
    3. $("#div1 > li") //direct child selector:选取div1下的直接子元素
    4. $("#div1, div2") //multiple selector
    5. $("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.
    6. $("ul > li :even");
    7. $(div).find(p:contains(love));    最后一行代码很炫,:contains()是一个选择器
    8. $("#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选择器的区别。
    9. $("#div1").last().prev();  //获取倒数第二个
    10. $(".featured")/parent();
    11. $("#div1").children();  //用DOM来实现第3条功能

Code-School:jQuery学习笔记

标签:

原文地址:http://www.cnblogs.com/timl525/p/4219965.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!