Heim  >  Artikel  >  Web-Frontend  >  js让一行页脚保持在底部_javascript技巧

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

WBOY
WBOYOriginal
2016-05-16 19:05:171028Durchsuche

测了一下,还可以,在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需刷新才能执行]

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn