4.2 toggle
//循环切换事件$("body").toggle( function(){ $(this).css("background-color", "red"); }, function(){ $(this).css("background-color", "blue");}, function(){ $(this).css("background-color", "yellow");});//切换是否可见$('.more').click(function(){ $('tr:gt(4)').toggle();});动画 5.1 show() 5.2 hide() 5.3 toggle() 滑动:由左至右 5.4 slideToggle 滑动:由下至上 5.5 fadeIn() 5.6 fadeOut()setInterval(function(){ $("div").fadeIn(500).fadeOut(500);});5.7 slideUp() 5.8 slideDown()
$(function(){ $("input[type=button]").click(function(){ $(".txt").slideUp("show"); $(".txt").slideDown("show"); });});5.8 animate
//切换可见状态:从右到左隐藏$(".btn").click(function(){ $(".addContent").toggle("slow");});//切换可见状态:从下到上进行隐藏$(".btnSlideToggle").click(function(){ $(".addContent").slideToggle("slow");});//切换可见:从右上角到左下角$(".btnanimate").click(function(){ $(".addContent").animate({ "width":'0px', "height":'0px', "opicty":'0', "margin-top":'300px' }, 1000).animate({ "width":'300px', "height":'300px', "opicty":'1', "margin-top":'0px' }, 1000);});新闻热点
疑难解答