<script language=javascript>
document.write("你好") //显示在当前主文档上
document.close();
function up()
{
document.write("你们好")//浏览器打开一个新文档并显示
document.close()
var ow=open("", "_blank");
ow.document.write("大家好 ");//新打开窗口中显示
ow.document.close();
}
</script>
<input type="button" value="按钮" name="B1" onclick="up()">
所以在实际应用中,应注意document对象所代表的文档,否则要显示的内容可能出现在不该显示的地方.