在表单提交前,我们可以先预览文档的显示结果,以便修改达到满意结果再提交。
下面的代码就是实现这一功能的:
第一个页面
<html>
<body>
<script>
function funopen()
{
window.open("view.html","","");
}
</script>
<textarea name="dushan" rows="10" cols="10"></textarea>
<input type="button" value="预览" onclick="fun();">
</body>
</html>
第二个页面view.html
<html>
<script>
function funview()
{
document.write(window.opener.document.getElementsByName("dushan")[0].value);
}
/script>
<body onload="funview()">
</body>
</html>
|