function LoadFile() {
alert("loadfileok");
var oFrame = document.getElementById("frmFile");
alert(oFrame);
var strRawContents = oFrame.contentWindow.document.body.childNodes[0].innerHTML;
alert(strRawContents);
}
最後のアラートが発生しない理由を誰か教えてもらえますか?
他のすべてが機能します。唯一の問題は最後の前の行のようですか?