しかし、それは空のアラートボックスを返します..誰か助けてください. iframe src(address location, http://www.google.com ) 値の詳細を含むアラートボックスが必要です。
<iframe width="700px" height="900px" name="ifrm" id="ifrm" onload="load()"></iframe>
<script type="text/javascript">
function load()
{
var oIframe = document.getElementById("ifrm");
var oDoc = oIframe.contentWindow || oIframe.contentDocument;
if (oDoc.document) {
oDoc = oDoc.document;
}
alert(oDoc.ifrm.href);
}
</script>