2013-03-08 49 views
0

但它返回空警報框..請任何人幫助我。 我需要alertbox詳細的iframe src(地址位置,http://www.google.com)值。當它嘗試使用javascript加載時,在alertbox中返回iframe src值

<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> 

回答

0

使用iframe的

alert(oDoc.ifrm.src); 
+0

它給下面的錯誤的src屬性。 [Uncaught TypeError:無法讀取未定義的屬性'src'] – Hari 2013-03-08 07:51:45

相關問題