首页>>Jquery文字>>jquery固定层顶部固定层和底部固定层不抖动支持IE6(2016-09-06)

jquery固定层顶部固定层和底部固定层不抖动支持IE6

jquery固定层顶部固定层和底部固定层不抖动支持IE6
赞赏支持
立刻微信赞赏支持 关闭

 

XML/HTML Code
  1. <div class="bottomcut">  
  2.     <h1><a href="">jquery固定层顶部固定层和底部固定层不抖动支持IE6</a></h1>  
  3.     <span class="right">  
  4.         <a href="">下载特效</a>  
  5.     </span>  
  6. </div><!-- bottomcut -->  
JavaScript Code
  1. <script type="text/javascript">  
  2. $(document).ready(function(){  
  3.   
  4.     $(window).scroll(function(){  
  5.         if($.browser.msie && $.browser.version=="6.0")$(".bottomcut").css("top",$(window).height()-$(".bottomcut").height()+$(document).scrollTop());  
  6.     });  
  7.       
  8. });  
  9. </script>  

 


原文地址:http://www.freejs.net/article_jquerywenzi_585.html