0

这不会像我做的那么难,但我最难得到这个问题的简单答案。我可以找到很多主题和教程,用于使用 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>
4

0 回答 0