(四)JavaScript语句

JavaScript语句

  1. 语句分号结尾

  2. 忽略多于空格

  3. 字符串中使用 \ 进行折行

    <!DOCTYPE html>
    <html>
        <head>
            
        </head>
        <body>
            <script>
                document.write("hello \
                    world");
            </script>
        </body>
    </html>

猜你喜欢

转载自blog.csdn.net/slavik_/article/details/106188970