js中的匿名函数

<html>
<head>
<script type="text/javascript">
    function a(){
	
	}
	// 匿名函数
	var f= function(x){
	     alert(x);
	}
	f(1);
</script>
</head>
<body>
   
</body>  
</html>

该函数f=function(){};

这段代码f表示给匿名函数相当对命名。

可以直接调用f();

posted @ 2016-05-13 00:38  lonecloud  阅读(234)  评论(0编辑  收藏  举报
我的博客即将同步至 OSCHINA 社区,这是我的 OSCHINA ID:lonecloud,邀请大家一同入驻:https://www.oschina.net/sharing-plan/apply