Files
JavaWeb/02. 前端Web基础(JS+Vue+Ajax)/JS-Vue/01. JS-引入方式.html
syx_computer 36f1a43d45 第三天
2025-10-21 16:38:15 +08:00

19 lines
336 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>