function dhDiv(ee1){ //導航距離屏幕頂部距離 var _defautlTop = $("#"+ee1).offset().top - $(window).scrollTop(); //導航距離屏幕左側距離 var _defautlLeft = $("#"+ee1).offset().left - $(window).scrollLeft(); //導航默認樣式記錄,還原初始樣式時候需要 var _position = $("#"+ee1).css('position'); var _top = $("#"+ee1).css('top'); var _left = $("#"+ee1).css('left'); var _zIndex = $("#"+ee1).css('z-index'); //鼠標滾動事件 $(window).scroll(function(){ if($(this).scrollTop() > _defautlTop){ //IE6不認識position:fixed,單獨用position:absolute模擬 if($.browser.msie && $.browser.version=="6.0"){ $("#"+ee1).css({'position':'absolute','top':eval(document.documentElement.scrollTop),'left':_defautlLeft,'z-index':99999}); //防止出現抖動 $("html,body").css({'background-image':'url(about:blank)','background-attachment':'fixed'}); }else{ $("#"+ee1).css({'position':'fixed','top':0,'left':_defautlLeft,'z-index':99999}); } }else{ $("#"+ee1).css({'position':_position,'top':_top,'left':_left,'z-index':_zIndex}); } }); }