我在使用弹出窗口调用引用的 html 页面中的方法/元素时遇到了一些问题。当用户单击 ckeditor 插件时,将调用弹出窗口。
Plugin.js(弹出窗口)
popupEqnwin = window.open('main.html','test','width=1000,height=450,status=1,scrollbars=yes,resizable=1');
main.html
<input type="text" id="image" name="image" value="xxx"/>
如何使用 popupEqnwin 来引用名为 image 的元素类型?我尝试使用 popupEqnwin.document.getElementById("image").value 但它不起作用。
欣赏任何指针或参考。谢谢你。