<script type="text/javascript">
var DYN_WEB = DYN_WEB || {};
DYN_WEB.Util = (function( Ut ) {
Ut.getResult = function ( cl, tag, el ) {
console.log(arguments)
}
return Ut;
})( DYN_WEB.Util || {} );
var links = DYN_WEB.Util.getResult('show-hide');
</script>
在 chrome->console 中,它显示:["show-hide"]
问题:
当脚本进入这一行时:DYN_WEB.Util
,还没有达到var links
,为什么console.log(arguments)
仍然可以输出["show-hide"]
,不是undefined
?