/*** * ����jqueryʱ���� * ��дʱ�䣺2012��7��17�� * version:manhuatotop.1.0.js ***/ $(function() { $.fn.manhuatotop = function(options) { var defaults = { showheight : 150, speed : 1000 }; var options = $.extend(defaults,options); $("body").prepend("
����
"); var $totop = $(this); var $top = $("#totop"); var $ta = $("#totop a"); $totop.scroll(function(){ var scrolltop=$(this).scrolltop(); if(scrolltop>=options.showheight){ $top.show(); } else{ $top.hide(); } }); $ta.hover(function(){ $(this).addclass("cur"); },function(){ $(this).removeclass("cur"); }); $top.click(function(){ $("html,body").animate({scrolltop: 0}, options.speed); }); } });