如何在同一窗口的框架上写新行?现在我让它用window.open创建一个新窗口。但现在我需要它在一个框架中。
我有一个包含两个框架(表单和结果)的 html,我需要通过按下第一框架上的按钮来写入第二个框架。
HTML
<html>
<head>
<title> Create Curriculum</title>
<meta charset="UTF-8"/>
</head>
<frameset rows="50%,50%">
<frame id="form" src="from.html"/>
<frame id="curri" src=""/>
</frameset>
您与表单交互,将信息添加到输入并保存信息。还有一个按钮可以使用下面输入的信息生成课程表。
JAVASCRIPT:
function genCurriculum() {
//I want to capture the second frame with id "curri"
var curri = parent.document.getElementById("curri");
curri.document.writeln("<h2>Head of the curriculum...</h2>");
//The others writeln for creating the curriculum
}
我想知道如何在框架中而不是在新窗口中书写。
并且不使用Jquery
,只是纯粹JavaScript
的。(教师要求)