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