IE7 не поддерживает obj.setAttribute('onload', doSomething);
.Вы можете обрабатывать IE с таймером.
var myiFrame = document.createElement("iframe");
myiFrame.setAttribute("id", "myiFrame");
myiFrame.setAttribute("src", "something.aspx");
myiFrame.setAttribute("class", "myclass");
myiFrame.setAttribute("frameBorder", "0"); //For IE
myiFrame.setAttribute("hspace", "0");
//For all:
myiFrame.setAttribute("onload", "testload();");
document.getElementById("myDiv").appendChild(myiFrame);
//For IE:
if (isIE = /*@cc_on!@*/false) {
setTimeout(function () { testload() }, 500);
}
Вот и все.Если вы также хотите подключить прослушиватель событий при загрузке, то IE снова нужно исправить:
function testload() {
//Add event listener for click so that
//resize myiFrame in case any changes occur in size of content when user clicks
var content = document.getElementById("myiFrame").contentWindow.document.body;
if (content.addEventListener) { //For all
content.addEventListener('click', function () {
//find the height of the internal page
var the_height = content.scrollHeight;
//change the height of the iframe
document.getElementById("myiFrame").height = the_height + 10;
}, false);
}
else if (content.attachEvent) { //For IE
cerceveIci.attachEvent('onclick', function () {
//find the height of the internal page
var the_height = cerceveIci.scrollHeight;
//change the height of the iframe
document.getElementById("kk-iframe").height = the_height + 10;
});
}
}