//无下拉的菜单取消hover样式 $(function(){ var $menuli=$("#menu").children("ul").children("li"); if($menuli.size()==0){return;} $menuli.bind('mouseenter',function(){ if($(this).children("ul").size()==0) { $(this).removeclass("hover"); } }); }); //右侧返回顶部图标 $(function(){ var icon=''; $("body").append(icon); var $window=$(window); var $gotoptop_icon=$("#gotoptop_icon"); var $body = (window.opera) ? (document.compatmode == "css1compat" ? $('html') : $('body')) : $('html,body'); // opera fix $(window).bind('scroll resize',function(){ if($window.scrolltop()>0) { $gotoptop_icon.show(); } else { $gotoptop_icon.hide(); } }); $gotoptop_icon.bind('click',function(){ $body.animate({scrolltop:'0px'},"fast"); return false; }); }); function goto(id) { var pos=0; var obj=$(id); if(obj.size()==0){return;} pos=obj.offset().top; pos=pos-137; var $body = (window.opera) ? (document.compatmode == "css1compat" ? $('html') : $('body')) : $('html,body'); // opera fix $body.animate({scrolltop:pos+'px'}); }