码迷,mamicode.com
首页 > 其他好文 > 详细

有关函数声明

时间:2016-12-10 16:00:56      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:lan   htm   函数   color   rip   ext   html   oct   pre   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

</head>
<body>
<script type="text/javascript"> 

var n=100;

/*
f2=function(){alert(n);}
function f3(){alert(n);}
f2();//100
f3();//100
*/

function F1(){
   f2=function(){alert(n);}
  function f3(){alert(n);}
   f3();//100
}
F1();
f2();//100
f3();//未定义

</script>
</html>

 

有关函数声明

标签:lan   htm   函数   color   rip   ext   html   oct   pre   

原文地址:http://www.cnblogs.com/taoxiaodan/p/6155872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!