标签:
基础语法$(selector).action()
索引从0开始
为了防止文档在完全加载之前运行jQuery代码,通常将代码放到$(document).ready()之中,ready()函数有三种语法。
1 //第1种 2 $(document).ready(function(){}) 3 //第2种 4 $().ready(function(){}) 5 //第3种 6 $(function(){})
jQuery选择器
1 //jQuery使用css选择器来选取html元素 2 3 //元素选择器 4 $("*")//所有元素 5 $("#id")//id="id"的元素 6 $(".class")//class="class"的元素 7 $("div")//所有div元素 8 9 //属性选择器 10 $("[href]")//带href属性的元素 11 $("[href=‘#‘]")//带href属性,值为#的元素 12 $("[href!=‘#‘]")//带href属性,值不为#的元素 13 $("[href$=‘.jpg‘]")//带href属性,值以.jpg结尾的元素 14 15 //伪类选择器 16 :first 17 :last 18 :even 19 :odd 20 :eq(index) 21 :gt(no) 22 :lt(no) 23 :not//选择器中的逻辑非 24 :contains(text) 25 :empty 26 :hidden 27 :visible 28 及一系列input相关的伪类
标签:
原文地址:http://www.cnblogs.com/pzpzpop/p/4511918.html