案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function open_win() 
5
{
6
window.open("http://www.baidu.com/")
7
window.open("//www.w3xue.com/")
8
}
9
</script>
10
</head>
11
12
<body>
13
<form>
14
<input type=button value="打开窗口" onclick="open_win()">
15
</form>
16
</body>
17
18
</html>