1. 程式人生 > >iframe 子、父頁面互動

iframe 子、父頁面互動

一、js 變數的互動

必須保證為全域性變數

1、父頁面呼叫子頁面的 js 物件:

var temp1 =$("#ifream")[0].contentWindow.temp;

其中 temp1 為父頁面的變數, $符號裡為引入的iframe的id ,後面的 temp 為子頁面的全域性變數名

2、子頁面呼叫父頁面的 js 物件 :

window.parent.變數名