この記事の例では、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.close() と同様にウィンドウを閉じます。
parent.subWindow_add.Close();
親ページで ID「4thEditTable」のリストを更新します (部分更新):
この記事が皆さんの jQuery プログラミングに役立つことを願っています。