window.opener.parent在Microsoft Edge上不起作用

时间:2017-09-28 13:24:21

标签: javascript jquery microsoft-edge

我使用

打开一个窗口
  

window.open();

在该窗口上处理之后,我想使用:

在Parent Window元素中写入数据
var html_high = '<img width="600" src="assets/images/abc.jpg" alt="Image">';
var high = window.opener.parent;
$('#image_area',high.document).html(html_high);

$('#image_area',high.document).html(html_high);这不起作用,仅在Microsoft Edge 40.15063.0.0的控制台中出错:

  

“SCRIPT65535:参数无效”

以上代码适用于所有浏览器,包括IE 11,10,9,chrome,mozilla和safari。

0 个答案:

没有答案