JavaScript常用特效收集

滚动条滚动到底部时自动加载更多的内容。

  
  
  
  
  1. <script type="text/javascript"
  2. window.onscroll=function(){ 
  3. var a = document.documentElement.scrollTop==0 ? document.body.clientHeight : 
  4. document.documentElement.clientHeight; 
  5.     var b = document.documentElement.scrollTop==0 ? document.body.scrollTop : 
  6. document.documentElement.scrollTop; 
  7.     var c = document.documentElement.scrollTop==0 ? document.body.scrollHeight : 
  8. document.documentElement.scrollHeight; 
  9.  
  10.     if(a+b==c){ 
  11.         showmore(); 
  12.     } 
  13. </script> 

 

你可能感兴趣的:(JavaScript,常用特效)