学习jQuery必须知道常用的几种方法
jQuery事件处理
ready(fn)
Js代码
1. $(document).ready(function(){2. // Your code here...3. });$(document).ready(function(){// Your code here...});
1. $("p").bind("click", function(){2. alert( $(this).text() );3. });$("p").bind("click", function(){alert( $(this).text() );});
1. $("td").toggle(2. function () {3. $(this).addClass("selected");4. },5. function () {6. $(this).removeClass("selected");7. }8. );$("td").toggle(function () {$(this).addClass("selected");},function () {$(this).removeClass("selected");});
1. $(".stripe tr").mouseover(function(){2. $(this).addClass("over");}).mouseout(function(){3. $(this).removeClass("over");})4. });$(".stripe tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");})});
1. $(".stripe tr").mouseover(function() { $(this).addClass("over") });2. $(".stripe tr").mouseout(function() { $(this).removeClass("over") });$(".stripe tr").mouseover(function() { $(this).addClass("over") });$(".stripe tr").mouseout(function() { $(this).removeClass("over") });
css(name,value)$("p").css("color","red");
slide(),hide(),fadeIn(), fadeout(), slideUp() ,slideDown()$("#btnShow").bind("click",function(event){ $("#divMsg").show() });$("#btnHide").bind("click",function(evnet){ $("#divMsg").hide() });