// 固定内页导航 // var ais = 1; // $(window).scroll(function () { // var sb = $(".twostage").offset().top; // var otop = document.body.scrolltop == 0 ? document.documentelement.scrolltop : document.body // .scrolltop; //ie和chrome获取方式不一样 // var sa = otop - document.body.clientheight; // if (otop + $(window).height() - 160 > sb && ais == 1) { // $(".twostage").addclass('fixed'); // } // if( otop == 0){ // $(".twostage").removeclass('fixed'); // } // }) window.onload = function(){ var h1 = parseint($(".headerblock").innerheight()); $(window).scroll(function(){ if($(document).scrolltop() > h1){ $(".twostage").addclass("fixed"); }else{ $(".twostage").removeclass("fixed"); } }) }