测了一下,还可以,在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>
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