0
これは私の機能です。 onload
イベントハンドラでscrollHeight
をiframe
と計算しようとしています。 しかし、私はエラーメッセージだけを得ています。誰か助けてもらえますか?実際のiframeの高さを計算する際のエラー
function showHBewertung(W3CElement, objCode) {
var iframe = document.createElement("iframe");
iframe.className = "bewertung_iframe"
iframe.src = "http://example.com?giatacode="+objCode;
W3CElement.appendChild(iframe);
iframe.onload = function() {
var height=iframe.contentWindow.document.body.scrollHeight;
iframe.style.cssText = "width:100%;height:" + height + "px";
}
}
は、エラーメッセージが詳細に何を言う:あなたはそれを行う場合は、
scrollHeight
iframe.contentDocument.body.scrollHeight
でiframeの文書のアクセスすることができますか? – reporterfirebugには何が表示されますか? – Rahul
エラー:アクセス許可が拒否されました。プロパティ 'document' – user160820