// javascript document $(function(){ /*======返回顶部======*/ $(window).scroll(function() { var scroh = $(this).scrolltop(); if (scroh > 150){ $('#to_top').fadein(300); $('.fk').fadein(300); } else{ $('#to_top').fadeout(300); $('.fk').fadeout(300); } }) $('#to_top').click(function(){ $('body,html').animate({scrolltop:0},300); }) if(navigator.useragent.indexof("msie 7.0") > 0){ $('.page span select').css({"margin-top":"1px"}); $('.inverstment').css({"margin":"-100px auto 0"}); } })