在此示例中,警報爲空; 我想讀取iFrame的位置,我爲此使用object.src,但它只有在設置其src屬性時才起作用。但我使用window.open方法設置了iFrame的位置,在這種情況下它不起作用。我做的事 ?javascript中的iframe位置
<body>
<iframe id="location" name="address" style="width:700px; height:700px;">
</iframe>
<script type="text/javascript" language="javascript">
window.open("http://www.google.com","address");
function clickMe()
{
var src = document.getElementBy Id("location").src;
alert(src);
}
</script>
<input type="button" onclick="clickMe()" value="click Me"/>
</body>
我知道它的工作,有問題我也寫,如果我設置其src屬性則其作品把手訪問,但我想知道如何使用open方法讀取位置的方式? – 2010-06-29 05:38:05
我明白了。請參閱編輯。 – quantumSoup 2010-06-29 06:10:47
哇!一直在尋找如何訪問該位置!許多人提到了src屬性,但我沒有設置該屬性。這是我的情況正確的解決方案! – 2012-10-25 08:35:35