<script>
//变量是可以保存数据,也可以保存地址
var i;
function display(){ //定义函数时,也就会返回函数的首地址
alert("hello");
}
i=display;//变量i也指向了这个函数的首地址
i();
</script>