This commit is contained in:
2020-12-29 18:18:08 +08:00
parent 7bc1ee59ee
commit beacca0952
14 changed files with 347 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
<html>
<head>
<title>javascript演示</title>
<script>
function hello(){
alert("你好")
}
hello()
function bay(){
alert("再见")
}
bay()
</script>
</head>
<body>
打开页面的时候会出现一个弹框 内容为 你好 然后会出现 再见
</body>
</html>