【内包含的弹出窗口-一个页面两个窗口】
上面的例子都包含两个窗口,一个是主窗口,另一个是弹出的小窗口。
通过下面的例子,你可以在一个页面内完成上面的效果。
复制内容到剪贴板
代码:
- <html>
- <head>
- <script language="javascript">
- function openwin()
- {openwindow=window.open("", "newwin", "height=250, width=250,toolbar=no,scrollbars="+scroll+",menubar=no");
- //写成一行
- openwindow.document.write("<title>例子</title>")
- openwindow.document.write("<body bgcolor=#ffffff>")
- openwindow.document.write("<h1>hello!</h1>")
- openwindow.document.write("new window opened!")
- openwindow.document.write("</body>")
- openwindow.document.write("</html>")
- openwindow.document.close()}
- </script>
- </head>
- <body>
- <a href="#" >打开一个窗口</a>
- <input type="button"value="打开窗口">
- </body>
- </html>
复制代码
看看 openwindow.document.write()里面的代码不就是标准的html吗?只要按照格式写更多的行即可。千万注意多一个标签或少一个标签就会出现错误。记得用openwindow.document.close()结束啊。
|