簡體   English   中英

需要Javascript對象(IE8)

[英]Javascript object required (IE8)

重新調整大小的元素的javascript在我的tumblr主題上可以正常使用,但是在IE8的以下行上出現對象必需的錯誤:

fschildren = $("fs_wrapper").childNodes;

謝謝彼得的幫助

<script type="text/javascript">

function resizedivs() {

$ = function(id) { return document.getElementById(id); }

fschildren = $("fs_wrapper").childNodes;
postc = 0;
thedivs = new Array();

for(i = 0; i < fschildren.length; i++) {
    if(fschildren[i].tagName == "DIV") {
        thedivs[postc] = fschildren[i];
        postc++;
    }
}

newwidth = 0;
for(i = 0; i < thedivs.length; i++) {
    if(newwidth <= document.body.clientWidth) {
        newwidth = newwidth + (thedivs[i].clientWidth)+15;
    }

    if(newwidth >= document.body.clientWidth || newwidth >= 1300) { // 100 for padding minus 15 extra
        newwidth = newwidth - (thedivs[i].clientWidth+15);
        break;
    }
}

$("fs_wrapper").style.width = newwidth-0+"px";
$("fs_wrapper").style.position = "relative";
$("fs_wrapper").style.left = "0px";

$("sec2").style.width = newwidth-0+"px";
$("sec2").style.position = "relative";
$("sec2").style.left = "0px";

$("sec3").style.width = newwidth-0+"px";
$("sec3").style.position = "relative";
$("sec3").style.left = "0px";

}

window.onresize = function() {
    resizedivs();

}

window.onload = function() {
    resizedivs();
}
</script>

對象真的存在嗎?

myObj = document.getElementById('myObj');
if(!myObj) {
  alert("4004 not found");
  return;
}

您缺少正確的選擇器. 類或#中的id

看到這個http://www.w3schools.com/jquery/jquery_ref_selectors.asp

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM