Iframe的文档未定义或为空

时间:2018-02-23 19:47:35

标签: javascript html iframe

我的任务是创建两个iframe。在一个有一个目录,你的鞋,袜子和衬衫的特点。来自1 iframe的数据不会移动到第二个iframe。

它说documentundefinednull

function doit() {
  window.frames[0].document.form1.txtprice.value = window.frames[1].document.form2.priceResult.value;
}

1 个答案:

答案 0 :(得分:1)

要在iframe中访问文档,请使用contentDocument属性。

  window.frames[0].contentDocument.form1.txtprice.value = window.frames[1].contentDocument.form2.priceResult.value;

此外,只有当两个iframe都与原始网页位于同一个域时,此功能才有效。