js弹出window.open窗口

Posted ppjj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js弹出window.open窗口相关的知识,希望对你有一定的参考价值。

<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="#" onclick="openwin()">打开一个窗口</a> 
<input type="button" onclick="openwin()" value="打开窗口"> 
</body> 
</html>



















以上是关于js弹出window.open窗口的主要内容,如果未能解决你的问题,请参考以下文章

js弹出窗口的命令

js弹出窗口的命令

window.open弹出窗口调用controller

用window.open打开的新窗口如何居中弹出

在JSP页面中 怎样实现点击按钮弹出选择框。能给出代码吗??

请教一个js语法:window.open()在IE中只是打开一个新页面,怎样才能在IE中打开一个新窗口?