• JavaScript -- 01. 基础语法介绍


    基础语法

    JS的基本语法

    1 Hello World

    js的三种输出方式

    DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Titletitle>
    head>
    <body>
        <script>
            // 三种输出方法
            console.log("Hello world") // 在控制台中输出
            document.write("Hello world") // 直接输出到文档(网页)中
            // alert("hello world") // 警告,弹出框
        script>
    body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    image-20221129232037827

    2 JS的编写位置

    中,类似于