这不会像我一样困难,但我正在最糟糕的时间得到这个问题的简单答案。我可以找到许多主题和教程,使用Javascript或选择iframe来调用来自另一帧的帧。但是,从父窗口的javascript中调用子框架似乎很少见。
我有一个父网页,其中有一个框架指向一个子页面。子页面中包含表单元素。我想在父窗口中使用Javascript来更改子窗口中的表单元素。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title></title>
<script type="text/javascript">
<!--
// I am having trouble getting THIS line to locate the frame
document.childFrame.document.getElementById('Website').value = 'domain.com';
-->
</script>
<frameset rows="100%">
<frame name="childFrame" src="child.html" />
</frameset><noframes></noframes>
</html>