16 lines
467 B
HTML
16 lines
467 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh_CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="index.css" />
|
|
<script src="index.js"></script>
|
|
<title>js测试</title>
|
|
</head>
|
|
<body>
|
|
<button id="alert_button">点我弹窗</button>
|
|
<button id="close_button">点我关闭窗口</button>
|
|
<button id="open_button">点我打开窗口</button>
|
|
</body>
|
|
</html>
|