Blogger Information
Blog 29
fans 1
comment 0
visits 23140
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JavaScript基本运行,常量,变量和函数
阿心
Original
1190 people have browsed it

js执行顺序和基本加载属性

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>JavaScript测试</title>
  6. </head>
  7. <body>
  8. <!-- //js代码由上往下执行,如果从外部加载进来,可以延时加载,关键字“defer"或把js脚本放到代码下面去。直接加载无效-->
  9. <!--示例:<script src="" defer></script>-->
  10. <!--如果js文件过大,又想同步执行,可以加入属性:async。如果js文件小就不需要了。示例:-->
  11. <!--<script src="jquery.js" async></script>-->
  12. <p>hello !!</p>
  13. <div id="nav">
  14. <div id="index">这才是我要输入的内容</div>
  15. </div>
  16. <script defer>
  17. window.document.write("<p>这是从js里面打印出来的数据!!</p>");
  18. alert("欢迎光临");
  19. //js声明变量需要关键字var
  20. var name = "admin";
  21. //需要在控制台打印
  22. console.log(name);
  23. //js可以想css一样设置样式。方法一:
  24. document.querySelector("#nav").style.border="1px solid red";
  25. document.querySelector("#nav").style.height="30px";
  26. document.querySelector("#index").style.border="1px solid black";
  27. document.querySelector("#index").style.width="200px";
  28. document.querySelector("#index").style.height="20px";
  29. </script>
  30. <div id="nav1">
  31. <div id="index1">这才是我要输入的内容第二套方案;</div>
  32. </div>
  33. <script>
  34. // 方法二:给他一个变量来统一接收
  35. var nav1 = document.querySelector("#nav1");
  36. var index1 = document.querySelector("#index1");
  37. nav1.style.cssText="width:500px;margin:0 auto;height:50px;border:1px solid yellow;"
  38. index1.style.cssText = "width:320px;height:45px;font-size:20px;color:red;float:right;border:1px solid #000;";
  39. </script>
  40. </body>
  41. </html>

js函数作用

  1. <!--//js中:变量区分大小写,并:函数同样区分大小写-->
  2. <!--js函数更PHP相似-->
  3. <script>
  4. //函数中可以直接访问外部变量//js拼接使用“+”号
  5. var name = "隔壁王";
  6. function a()
  7. {
  8. return name + "我是函数1";
  9. }
  10. function A()
  11. {
  12. console.log("我是函数2");
  13. console.log('我还是函数2');
  14. }
  15. console.log(a());
  16. A();
  17. </script>

js声明常量和变量

  1. <script>
  2. // js变量和常量比较抽象。可以理解为:常量就是固定不需要发生变化的值
  3. // 常量
  4. var name = '老王吧';
  5. // 变量
  6. var age = '30';
  7. console.log("name");
  8. // 打印变量不需要“”
  9. console.log(age);
  10. //更新age
  11. age = "31";
  12. console.log(age);
  13. </script>

总结:基本类型运行原理更PHP类型。这个位置比较好理解。

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:编程语言是相通的, 掌握一门, 再学一门就会快很多
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