实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function open_win() 
6
{
7
window.open("https://www.microsoft.com/");
8
window.open("https://www.w3schools.com/");
9
}
10
</script>
11
</head>
12
13
<body>
14
<form>
15
<input type="button" value="Open Windows" onclick="open_win()">
16
</form>
17
</body>
18
19
</html>