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 = /*@[email protected]*/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;
});
}
}
オンロードを設定するための独創的な方法です。私はそれを見たことがない。 – mplungjan