JavaScript-01

JavaScript 在 1995 年由 Brendan Eich 发明,并于 1997 年成为一部 ECMA 标准。

官方称谓为ECMAScript,缩写为ES。

从 2015 年起,ECMAScript 按年命名(ECMAScript 2015)。

  1. 前置知识点: HTML CSS
  2. 基本语法

 

  • 内部js  
<script>
  //控制台的helloworld  console.log =》对象.方法();
  console.log("Hello world console.. ");
</script>

 

    

 

 

  •  外部js

           

 

          

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <script src="demo.js"></script>
</head>
<body>

</body>
</html>

 

        

 

posted @ 2021-11-16 11:18  saimirisciureus  阅读(19)  评论(0)    收藏  举报