webveuje/javascriptpress/demo/demo5.html
2020-12-31 09:56:58 +08:00

16 lines
352 B
HTML

<html>
<head>
<title>javascript演示</title>
<script>
function hello(){
var name = "啦啦啦";
var age = 18;
alert(name);
}
</script>
</head>
<body>
<button onClick="hello()">点我运行hello这个函数</button>
</body>
</html>