<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>单击事件 </title><script type="text/javascript">
function openwin()
{
window.open('
</script></head><body> <form>
<input name="点击我" type="button" value="点击我" onclick= "openwin()"/> </form></body></html>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
function Wopen(){
window.open('http://www.baidu.com','_blank','width=1366,height=768,menubar=yes,toolbar=yes,
status=yes,scrollbars=yes') ; }
</script></head><body><form>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!">
</form></body></html>