ホームページ > 記事 > ウェブフロントエンド > iframe の抽出と親ページの要素の変更_html/css_WEB-ITnose
1: jquery メソッドを使用して
を取得します
1: 値を取得します
$(window.parent.document).find("#second_navigator").html();
2: 親ページ要素を変更します
$(window.parent.document).find("#second_navigator").html("iframe から値を渡しました");
2: JavaScriptメソッド
1: 値
window.parent.document.getElementById("second_navigator").innerHTML;
2: 親ページ要素を変更します
window.parent.document .getElementBy ID ("second_navigator ").innerHTML="iframe から値を渡します";