jQuery学习笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery学习笔记相关的知识,希望对你有一定的参考价值。

1. 基础语法:$(selector).action()

2. 基础选择器

技术分享
1) All Seletor
    $("*")
2) Class Selector
    $(".class")
3) Element Selector
    $("element")
4) ID Selector
    $("#id")
5) Multiple Selector
    $("selector1, selector2, selectorN")
View Code

3. 属性选择器

技术分享
1) Attribute Contains Prefix Selector [name|="value"]
    $("[attribute|=‘value‘]")  引号可选
2) Attribute COntains Selector [name*="value"]
  $("attribute*=‘value‘]")
3) Attribute Contains Word Selector [name~="value"]
    $("[attribute~=‘value‘]")
4) Attribute Equal with Selector[name="value"]
    $("[attribute=‘value‘]")
5) Attribute Not Equal Selector [name!="value"]
    $("[attribute!=‘value‘]")
6) Attribute Ends With Selector [name$="value"]
    $("[attribute$=‘value‘]")
7) Attribute Starts With Selector [name^="value"]
    $("[attribute^=‘value‘]")
8) Has Attribute Selector [name]
    $("[attribute]")
9) Multiple Attribute Selector [name1="value1" [name2="vallue2"]
    $("[attributeFilter1][attributeFilter2][attributeFilterN]")
View Code

 4. 基础过滤器

技术分享
1) :animated Selector
    $(":animated")
2) :eq() Selector
    a) $(":eq(index)")
    b) $(":eq(-index)")
3) :even Selector
    $(":even")
4) :first Selector
    $(":first")
5) :focus Selector
    $(":focus")
6) :header Selector
    $(":header")
7) :last Selector
    $(":last")
8) :gt() selector
    a) $(":gt(index)") 
    b) $(":gt(-index)")
9) :lt() selector
    a) $(":lt(index)")
    b) $(":lt(-index)")
10) :not() selector
    $(":not(selector)")
View Code

 

以上是关于jQuery学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

web前端开发JQuery常用实例代码片段(50个)

[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段

jQuery源代码学习笔记:jQuery.fn.init(selector,context,rootjQuery)代码具体解释

JQuery学习笔记

JQuery的学习笔记

jQuery学习笔记