Maison  >  Article  >  interface Web  >  js让一行页脚保持在底部_javascript技巧

js让一行页脚保持在底部_javascript技巧

WBOY
WBOYoriginal
2016-05-16 19:05:171028parcourir

测了一下,还可以,在IE6、IE7、FIREOFX等都没有问题! 窗口缩小时也没有问题!

复制代码 代码如下:

<script> <BR>function test(){ <BR> var infoHeight = document.getElementById("info").scrollHeight; <BR> var bottomHeight = document.getElementById("bottom").scrollHeight; <BR> var allHeight = document.documentElement.clientHeight; <br><br> var bottom = document.getElementById("bottom"); <BR> if((infoHeight + bottomHeight) < allHeight){ <BR> bottom.style.position = "absolute"; <BR> bottom.style.bottom = "0"; <BR> }else{ <BR> bottom.style.position = ""; <BR> bottom.style.bottom = ""; <BR> } <br><br> setTimeout(function(){test();},10); <BR>} <BR>test(); <BR></script>


[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn