(1)子頁面調用父頁面的方法或者變數: window.parent.方法()或者變數名window.parent相當於定位到父頁面 之後的操作和在父頁面中寫代碼一樣寫 (2)父頁面調取子頁面 主要是通過contentWindow定位到子頁面 ...
(1)子頁面調用父頁面的方法或者變數:
window.parent.方法()或者變數名
window.parent相當於定位到父頁面 之後的操作和在父頁面中寫代碼一樣寫
window.parent.aa();//調取aa函數 window.parent.bb;//調取bb變數 例如:想在子頁面中得到id為aaa的文本框的值 window.parent.$("#aaa").val();//這種寫法的前提是引用了jquery window.parent.getElementById("aaa").value; //js的寫法
(2)父頁面調取子頁面
主要是通過contentWindow定位到子頁面
document.getElementById("childframe").contentWindow.childtest(); //調取子頁面中的childtest方法 js的寫法 var childWindow = $("#addFrame")[0].contentWindow;//獲取子窗體中的對象 childWindow.formSubmit();//調取子頁面的formSubmit方法 jquery的寫法 //註釋:其中 childframe和addFrame 都時iframe的id