Blogger Information
Blog 31
fans 0
comment 0
visits 30279
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
初识JavaScript基础
emy
Original
781 people have browsed it

一、JS由来:1995 年 2 月 网景(Netscape)公司为了推广这个脚本,蹭了一下 Java 热度,正式改名为 JavaScript。
二、基本语法:
1-文件内:<script>... </script>标签:可以放到 html 文档中任何地方 head 中 body 中 html 中 甚至 HTML 之外。
2-链接外部 js 文档 用:<script src="1.js"></script>
三、JS 语言核心组成三部分:

组成部分描述
ECMAsctipt核心语法
DOMDocument Object Model 文档(html/xml)对象模型
BOMBrowser Object Model 浏览器窗口对象模型

四、使用JS要注意以下几点:
1-js 字符编码集:Unicode 每个字符采用两个字节表示。
2-可以使用中文作为变量名,但不要用。
3-关于转义字符/:出现在正常的字符前无效。
4-在 JS 中声明变量使用关键字 var。
5-打印到控制台使用console.log()

    //示例
    var username = "admin";
    // 打印
    console.log(admin);

6-在函数中区分大小写。

   // 声明一个变量 小写
        function name() {
            console.log("hello world");
          }
          // 大写
          function Name() {
            console.log("hello World");
          }
          // 调用
          name();
          Name();

7-允许变量更新以及重新声明。

    var username = "admin";
    console.log(username); //输出  admin
    // 更新
    username = "emy";
    console.log(username); //输出  emy
    // 重新声明
    var username = "maymay";
    console.log(username); //输出  maymay

8-js 与 php 一样存在函数作用域与全局作用域

    {
        // 块作用域
        // es6 语法
        let admin = "emy";
        // 块内访问
        console.log(admin); //正常输出
      }
      // 全局访问
      console.log(admin); //报错

五、总结:JS做为前端页面的利器,我们应该好好学习这个工具。

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:下周三(10日)之后, 建议博客不要以"作业"形式发布了
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post