この「iframe.contentDocument」をjsファイルアップローダーで使用しましたが、IE8、Firefox(3.5以下のバージョン)では機能しません。他のDOMを使用してiframeを操作することでこれを解決するにはどうすればよいですか?
ありがとうございます
この「iframe.contentDocument」をjsファイルアップローダーで使用しましたが、IE8、Firefox(3.5以下のバージョン)では機能しません。他のDOMを使用してiframeを操作することでこれを解決するにはどうすればよいですか?
ありがとうございます
試す
var doc;
var iframeObject = document.getElementById('iframeID'); // MUST have an ID
if (iframeObject.contentDocument) { // DOM
doc = iframeObject.contentDocument;
}
else if (iframeObject.contentWindow) { // IE win
doc = iframeObject.contentWindow.document;
}
if (doc) {
var something = doc.getElementById('someId');
}
else {
alert('Wonder what browser this is...'+navigator.userAgent);
}