这是在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”的帧访问具有原点的帧 “空值”。协议,域和端口必须匹配。
有没有办法做到这一点?
由于