webveuje/javascriptpress/demo/demo3.html
2020-12-29 18:18:08 +08:00

14 lines
299 B
HTML

<html>
<head>
<title>javascript演示</title>
<script>
function hello(){
alert("你好")
}
hello()
</script>
</head>
<body>
打开页面的时候会出现一个弹框 内容为 你好
</body>
</html>