Q:如何添加jQuery库?

A:两种方式。

    


<</SPAN>head>  
 <</SPAN>script type="text/javascript" src="jquery.js"></</SPAN>script>  
</</SPAN>head>


<</SPAN>head>  
 <</SPAN>script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></</SPAN>script>  
</</SPAN>head>  
 
<</SPAN>head>  
 <</SPAN>script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.min.js"></</SPAN>script>  
</</SPAN>head>






Q:jQuery有哪些重要语法?

A:基础语法是:$(selector).action()

   

  (selector)“查询”和“查找” HTML 元素 ,可以选择html元素,id,class以及标签等;

   


Q:(selector)选择器如何进行元素选择?

A:举例说明

     $("this")       

     $("#test")     

     $(".test")       获取所有class=test的元素

     $("p")           

     $("p.test")     获取所有class=test的段落

     $("ul li:first") 

的第一个

元素      $("[href]")     
     $("[href$='.jpg']")  
     $("div#test.test")  
     $("p").css("background-color","red")    将所有 段落 的背景颜色更改为红色