本文實例講述了jQuery子窗體取得父窗體元素的方法。分享給大家供大家參考。具體如下:
$("#父窗口元素ID",window.parent.document);
對應javascript版本為
window.parent.document.getElementById("父窗口元素ID");
取父視窗的元素方法:
$(selector, window.parent.document);
取父視窗的父視窗的元素就可以用:
$(selector, window.parent.parent.document);
類似的,取其它視窗的方法大同小異
取得iframe父窗體元素:
$(selector, window.parent.document);
取得透過windows.open()開啟的父窗體:
$(selector, window.opener.document);
取得透過 showModelDialog()開啟的父窗體:
$(selector, window.dialogArguments.document);
用於刷新父視窗整個頁面:
window.parent.location.reload();
window外掛程式關閉視窗,類似window.close():
parent.subWindow_add.Close();
刷新父頁中的id為「4thEditTable」的清單(局部刷新):
希望本文所述對大家的jQuery程式設計有所幫助。