跳转至

02.HelloWorld

内部标签

Text Only
   <script>
        alert("hello, world");
    </script>
Text Only
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HelloWorld</title>
    <script>
        alert("hello, world");
    </script>
</head>
<body>

</body>
</html>

外部引入

Text Only
<script src="hello.js"></script>
Text Only
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HelloWorld</title>
    <script src="hello.js"></script>
</head>
<body>

</body>
</html>
Text Only
默认显示JavaScript
<script src="hello.js" type="text/javascript"></script>