2015年2月15日 星期日

iframe 鑲嵌網頁

父:
<iframe src="./index.aspx" name="IIframe" scrolling="auto" width="100%"  marginwidth="0" marginheight="0" id="IIframe" scrolling="no"></iframe>
scrolling 是視窗右邊的上下bar條開或不開

子:
<head>    
<script>     
function resize()
{      
parent.document.getElementById("mainframe").height=document.body.scrollHeight; //傳長度回父視窗
}  
</script>
</head>

在body裡加入
<body onload="resize();" > 
即可

父:
$("#IIframe")[0].contentWindow.callme= "hello";
callme 是變數名稱 隨取
子:
alert(callme);


父呼叫子視窗的function
父:
$("#IIframe")[0].contentWindow.saveAll();
function saveAll(){

}

沒有留言:

張貼留言