私の Web ページには、本文で onLoad と呼ばれる次の JavaScript 関数があります。
function changeDivWidth()
{
d = document.getElementById('background');
document.getElementById("backgroundImg").style.height = window.innerHeight+"px";
imgWidth = document.getElementById("backgroundImg").width;
marginLeft = ($(window).width() - imgWidth)/2;
d.style.width = imgWidth+"px";
d.style.left = marginLeft+"px";
document.getElementById("backgroundImg").style.visibility="visible";
document.getElementById("menu").style.visibility="visible";
}
このスクリプトは基本的に、ブラウザ ページの高さを要素の高さとして設定します。これは、スクリプトがロードされていない IE7 と IE8 を除いて、すべてのブラウザで問題なく動作しています。解決策を教えてもらえますか?
ありがとう