第一個javascrpt代碼

第一個javascrpt代碼
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script type="javascript">
        console.log("Hello World");
    </script>
</head>
<body>
    <!-- 
        編寫位置
        咱們目前學習的JS所有是客戶端的JS,也就是說全都是須要在瀏覽器中運行的,因此咱們的JS代碼全都須要在網頁中編寫
        咱們的JS代碼須要編寫到<script>標籤中
        咱們通常將script標籤寫到head中
        屬性:
            -type:默認值text/javascript能夠不寫,不寫也是這個值
            -src:當須要引入一個外部的js文件時,使用該屬性指向文件的地址.
     -->
</body>
</html>
相關文章
相關標籤/搜索