标签:fun bsp 函数表达式 lse 出现 的区别 col ie8 log
多用函数表达式
var ff=function(){};
//函数声明 // // if(true){ // function f1() { // console.log("哈哈,我又变帅了"); // } // }else{ // function f1() { // console.log("小苏好猥琐"); // } // } // f1(); //函数表达式 var ff; if(true){ ff=function () { console.log("哈哈,我又变帅了"); }; }else{ ff=function () { console.log("小苏好猥琐"); }; } ff(); //函数声明如果放在if-else的语句中,在IE8的浏览器中会出现问题 //以后宁愿用函数表达式,都不用函数声明
标签:fun bsp 函数表达式 lse 出现 的区别 col ie8 log
原文地址:https://www.cnblogs.com/jane-panyiyun/p/12157797.html