这是在 Chrome 27 上,在此处查看了许多其他答案之后。在父 html 页面中,当用户单击按钮时,将执行此函数:
var newWindow = window.open("hello.html");
现在,hello.html 页面具有以下代码(以及基本的 html 结构):
<script>
$(document).ready(function() {
console.log($("#search-button", window.opener));
});
</script>
关键是能够将一些数据从 hello.html “发送”到父页面。这是 Chrome 的消息:
阻止源为“null”的帧访问源为“null”的帧。协议、域和端口必须匹配。
有没有办法做到这一点?
谢谢