JavaScriptで親ウィンドウを呼び出す方法にはどのようなものがありますか?

青灯夜游
リリース: 2023-01-06 11:18:01
オリジナル
3226 人が閲覧しました

親ウィンドウを呼び出す Javascript メソッド: 1. "window.parent" ステートメントを使用して、iframe ページ内の親ページ オブジェクトを呼び出します。 2. "window.opener" ステートメントを使用して、それを開きます。 window.open" 子ページで親ページ オブジェクトを呼び出します。

JavaScriptで親ウィンドウを呼び出す方法にはどのようなものがありますか?

このチュートリアルの動作環境: Windows 7 システム、JavaScript バージョン 1.8.5、Dell G3 コンピューター。

JavaScript が親ウィンドウ (親ページ) を呼び出すメソッドは何ですか

1. Window.parent は iframe ですオブジェクト

例:

a.html

<html>  
    <head><title>父页面</title></head>  
<body>  
    <form name="form1" id="form1">  
         <input type="text" name="username" id="username"/>  
    </form>  
    <iframe src="b.html" width=100%></iframe>  
</body>  
</html>
ログイン後にコピー

a のユーザー名テキスト ボックスに値を割り当てる必要がある場合。 htm in b.htm, like アップロード機能がたくさんあります。アップロード機能ページは Ifrmae にあります。アップロードが成功したら、親ページのテキスト ボックスにアップロードされたパスを入力します。

<script type="text/javascript">  
    var _parentWin = window.parent ;  
    _parentWin.form1.username.value = "xxxx" ;  
</script>
ログイン後にコピー
# と書く必要があります。

##b.html のソース コード:

a.html

<html>  
<head>  
    <title>主页面</title>  
    <script>  
        /** 为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量 */  
        var parentVairous = "为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量";  
        function parentInvokeIFrame()  
        {  
                var iframeTest = document.frames["iframeTest"]; //使用document.getElementById("iframeTest");同样可以  
                alert(iframeTest.document.body.innerHTML);  
                alert(iframeTest.iFrameVair);  
        }  
    </script>  
</head>  
<body>  
<form name="form1" id="form1">  
    <input type="text" name="username" id="username"/>  
    <input type = "button" value = "父窗口调用IFrame子窗口中的内容" onclick = &#39;parentInvokeIFrame()&#39;/>  
</form>  
<iframe src="b.html" width = &#39;100%&#39; id = &#39;iframeTest&#39;></iframe>  
</body>  
</html>
ログイン後にコピー

b.html

<html>  
     <head>  
         <title></title>  
         <script type="text/javascript">  
            /** 为测试父窗体调用IFrame子窗体的全局函数而添加的子窗口全局函数 */  
         var iFrameVair = "测试父窗体调用IFrame子窗体的全局函数";  
           
         function UpdateParent()  
         {  
             var _parentWin = window.parent ;  
             _parentWin.form1.username.value = "xxxx" ;  
         }  
           
         function childInvokeParent()  
         {  
                var parentVairous = window.parent.window.parentVairous;  
                alert(parentVairous);     
         }  
       </script>  
    </head>  
<body>  
     <form name="form1" id="form1">  
         <p>  </p>  
         <p align="center">  
            <input type = "button"   
                   name = "button"   
                   id = "button"   
                   value = "更新主页面的UserName内容"   
                   onclick = "UpdateParent()">  
            <input type = "button"  
                         name = "button2"  
                         id = "button2"  
                         value = "测试IFrame子窗口调用父窗口的全局变量"  
                         onclick = "childInvokeParent();"/>  
         </p>  
         <p>  </p>  
     </form>  
</body>  
</html>
ログイン後にコピー

ps: 複数の地域で取得することはできませんたとえば、iframe の src が 'http://www .xxx.ccc/' であるドメインは許可されません

2. window.opener は、window によって開かれる子ページです。を開いて親ページ オブジェクトを呼び出します

ソース コード:


a.html

<html>  
<head>  
     <title>主页面</title>  
     <script type="text/javascript">  
     /** 为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量 */    
     var parentVairous = "为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量";   
       
     /**   
      *  因为不同于IFrame(IFrame有id,window.open()与IFrame的父子窗口的模式不同),  
      *  所以当是通过window.open()方法打开一个新窗口使, 必须有一个新窗口的对象   
      *  当然必须先让子窗口弹出来, 才能调用子窗口中的变量, 否则抛出异常  
      */  
     var OpenWindow;  
       
     function openSubWin()  
     {  
         OpenWindow = window.open(&#39;b.html&#39;, &#39;newwindow&#39;, &#39;height=1024, width=1300, top=0, left=0, toolbar=no, menubar=yes, scrollbars=yes,resizable=yes,location=no, status=no&#39;);  
     }  
     function parentInvokeChild()    
     {    
         if(OpenWindow)//当然必须先让子窗口弹出来, 才能调用子窗口中的变量, 否则抛出异常           
         {  
               alert(OpenWindow.iFrameVair);  
         }  
     }   
     </script>  
</head>  
<body>  
    <form name="form1" id="form1">  
        <input type="text" name="username" id="username"/>  
        <input type="button" value="弹出子页面" onclick = "openSubWin()">  
        <input type="button" value="测试调用弹出窗口中的全局变量" onclick = "parentInvokeChild()">  
    </form>  
</body>  
</html>
ログイン後にコピー

b.html

<html>  
    <head>  
        <title>子页面</title>  
        <script type="text/javascript">  
         /** 为测试父窗体调用IFrame子窗体的全局函数而添加的子窗口全局函数 */    
         var iFrameVair = "测试父窗体调用IFrame子窗体的全局函数";  
         function UpdateParent()  
         {  
              var _parentWin = window.opener;  
              _parentWin.form1.username.value = "xxxx" ;  
         }  
         function childInvokeParent()    
         {    
              var parentVairous = window.opener.window.parentVairous;    
              alert(parentVairous);       
         }  
        </script>  
    </head>  
<body>  
<form name="form1" id="form1">  
<p>  </p>  
<p align="center">  
    <input type="button"   
               onclick = "UpdateParent();"   
               name="button"   
               id="button"   
               value="更新主页面的UserName内容">  
    <input type = "button"    
           name = "button2"    
           id = "button2"    
           value = "测试IFrame子窗口调用父窗口的全局变量"    
           onclick = "childInvokeParent();"/>    
</p>  
<p>  </p>  
</form>  
</body>
ログイン後にコピー
[関連推奨事項:

JavaScript 学習チュートリアル]

以上がJavaScriptで親ウィンドウを呼び出す方法にはどのようなものがありますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!