标签:toolbar rip bsp 不同 变量 pre on() img 地方
首先看一段JS代码,其中使用了两种方式声明了两个函数,分别在不同的地方调用两个函数:
1 <script> 2 ‘use strict‘; 3 // 输出hello函数 4 console.log(hello); 5 // 定义hello函数 6 function hello(){ 7 alert("Hello"); 8 } 9 // 输出hi变量 10 console.log(hi); 11 // 给hi赋一个函数 12 var hi = function(){ 13 alert("Hi"); 14 } 15 // 输出变量hi 16 console.log(hi); 17 </script>
标签:toolbar rip bsp 不同 变量 pre on() img 地方
原文地址:http://www.cnblogs.com/LiuB/p/6065194.html