webveuje/javascriptpress/demo/demo2.html

11 lines
244 B
HTML
Raw Normal View History

2020-12-29 18:18:08 +08:00
<html>
<head>
<title>javascript演示</title>
<script>
alert("你好世界");
</script>
</head>
<body>
打开页面的时候会出现一个弹框 内容为 你好世界
</body>
</html>