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