天天看點

IE7 IE8 FF

function SetWinHeight(obj)

{

var main=obj;

if (document.getElementById)

{

if (main && !window.opera)

{ if(main.Document && main.Document.body.scrollHeight){

main.height = main.Document.body.scrollHeight; }

else if (main.contentDocument && main.contentDocument.body.offsetHeight) {

main.height = main.contentDocument.body.offsetHeight;}

}

}

}

簡單的發現 2個條件 IE8都能進入。。。而且在進行頁面CSS調試的時候好多都有點類似FF,貌似IE8相容了FF不少内容哇。。。