• <i id='PzzXI'><tr id='PzzXI'><dt id='PzzXI'><q id='PzzXI'><span id='PzzXI'><b id='PzzXI'><form id='PzzXI'><ins id='PzzXI'></ins><ul id='PzzXI'></ul><sub id='PzzXI'></sub></form><legend id='PzzXI'></legend><bdo id='PzzXI'><pre id='PzzXI'><center id='PzzXI'></center></pre></bdo></b><th id='PzzXI'></th></span></q></dt></tr></i><div id='PzzXI'><tfoot id='PzzXI'></tfoot><dl id='PzzXI'><fieldset id='PzzXI'></fieldset></dl></div>

      <small id='PzzXI'></small><noframes id='PzzXI'>

        <bdo id='PzzXI'></bdo><ul id='PzzXI'></ul>
    1. <legend id='PzzXI'><style id='PzzXI'><dir id='PzzXI'><q id='PzzXI'></q></dir></style></legend>
      1. <tfoot id='PzzXI'></tfoot>
      2. js 打开弹出窗口并在另一个页面中访问其元素

        时间:2023-10-01

        <small id='q4gLc'></small><noframes id='q4gLc'>

          <tfoot id='q4gLc'></tfoot>
          <legend id='q4gLc'><style id='q4gLc'><dir id='q4gLc'><q id='q4gLc'></q></dir></style></legend>
        1. <i id='q4gLc'><tr id='q4gLc'><dt id='q4gLc'><q id='q4gLc'><span id='q4gLc'><b id='q4gLc'><form id='q4gLc'><ins id='q4gLc'></ins><ul id='q4gLc'></ul><sub id='q4gLc'></sub></form><legend id='q4gLc'></legend><bdo id='q4gLc'><pre id='q4gLc'><center id='q4gLc'></center></pre></bdo></b><th id='q4gLc'></th></span></q></dt></tr></i><div id='q4gLc'><tfoot id='q4gLc'></tfoot><dl id='q4gLc'><fieldset id='q4gLc'></fieldset></dl></div>

                <tbody id='q4gLc'></tbody>

                  <bdo id='q4gLc'></bdo><ul id='q4gLc'></ul>
                  本文介绍了js 打开弹出窗口并在另一个页面中访问其元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我的 js 弹出窗口有问题.

                  I have a problem with js popup window.

                  我打开一个弹出窗口并尝试在另一个页面页面中访问它的元素,没有成功,我不想重新加载弹出窗口源,我只是想访问打开的弹出窗口的一个元素

                  I open a popup and try to access its elements in another page page, no success, and I don't want to reload the popup source, I simply want access a element of the opened popup

                  前-

                  • 第一页 - 使用 html5 音乐播放器打开弹出窗口
                  • 第二页 - 当用户点击主页上的按钮时需要暂停音乐

                  第一页

                  var popup = window.open("test.html","mypopup","width=500,height=300");
                  

                  我想在不重新加载弹出窗口的情况下访问 mypopup windows 元素的第二页

                  2nd page I want to access mypopup windows elements without reloading the popup

                  我只需要如何在不使用 JS 或 JQuery 中断其来源的情况下访问打开的弹出元素的方式

                  I only need the way how to access opened popup elements without interrupting its sources using JS or JQuery

                  推荐答案

                  同源(域、端口和协议)?

                  Same origin (domain, port and protocol)?

                  纯 JS:

                  来自第 1 页

                  var popup = window.open("test.html","mypopup","width=500,height=300");
                  popup.document.getElementById("player").someFunction();
                  

                  从第 2 页开始

                  var popup = window.open('','mypopup');
                  // now popup is known again
                  popup.document.getElementById("player").someFunction();
                  

                  这篇关于js 打开弹出窗口并在另一个页面中访问其元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:在 jQuery ajax 成功回调中创建时弹出窗口被阻止 下一篇:window.open() 在第二次调用时返回 undefined 或 null

                  相关文章

                  • <bdo id='Ekcdz'></bdo><ul id='Ekcdz'></ul>

                  <tfoot id='Ekcdz'></tfoot>

                  1. <legend id='Ekcdz'><style id='Ekcdz'><dir id='Ekcdz'><q id='Ekcdz'></q></dir></style></legend>

                    <small id='Ekcdz'></small><noframes id='Ekcdz'>

                    <i id='Ekcdz'><tr id='Ekcdz'><dt id='Ekcdz'><q id='Ekcdz'><span id='Ekcdz'><b id='Ekcdz'><form id='Ekcdz'><ins id='Ekcdz'></ins><ul id='Ekcdz'></ul><sub id='Ekcdz'></sub></form><legend id='Ekcdz'></legend><bdo id='Ekcdz'><pre id='Ekcdz'><center id='Ekcdz'></center></pre></bdo></b><th id='Ekcdz'></th></span></q></dt></tr></i><div id='Ekcdz'><tfoot id='Ekcdz'></tfoot><dl id='Ekcdz'><fieldset id='Ekcdz'></fieldset></dl></div>