我有一個帶有Iframe的頁面。我用下面的代碼獲取iframe的大小:如何獲得當前頁面的Iframe大小
<script language="javascript">
function sn()
{
alert('height is now '+document.getElementById("Iframemain").height)
alert('height is now '+document.getElementById("Iframemain").width)
}
</script>
<input type="button" onClick="sn()" value="Show height/width">
我也有另一個頁面的iframe,但我不知道iframe的ID。我想知道使用JavaScript的Iframe的大小。我該怎麼做?
thanx提前。
Thanx Rory McCrossan 我也試過下面的代碼,但得到udefined在警報消息。
<script language="javascript"> function sn()
{
var frame = window.frames[0];
alert(frame.width)
alert(frame.height)
}
</script>
<input type="button" onClick="sn()" value="Show height/width">
</html>
這兩個頁面是否使用相同的域? –
不,他們是在不同的域名 – Sameer