jQuery api

1329 ワード

   $(document).ready(function(){  
      // Your code here...  
    });  

 
 $("p").bind("click", function(){  
 alert( $(this).text() );  
}); 

 
 $("td").toggle(  
   function () {  
     $(this).addClass("selected");  
   },  
   function () {  
     $(this).removeClass("selected");  
   }  
 ); 

 
   $(".stripe tr").mouseover(function() { $(this).addClass("over") });  
   $(".stripe tr").mouseout(function() { $(this).removeClass("over") });  

   or
$(".stripe tr").mouseover(function(){    
     $(this).addClass("over");}).mouseout(function(){   
     $(this).removeClass("over");})  
 }); 

 
css(name,value)
$("p").css("color","red");

 
slide(),hide(),fadeIn(), fadeout(), slideUp() ,slideDown()

 
jQuery 1.1.2 API Browser