Files
JavaWeb/02. 前端Web基础(JS+Vue+Ajax)/JS-Vue/01. JS-引入方式.html
syx_computer 61ec7c9468 第二天
2025-10-13 10:15:32 +08:00

17 lines
332 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS-引入方式</title>
</head>
<body>
<!-- <script>
//内部脚本
alert('hello js');
</script> -->
//外部脚本
<script src="./js/demo.js"></script>
</body>
</html>