自己动手-括号的区别
function init() {alert("abc");return function() {alert("123");}}// window.onload=init;//方法的引用window.onload = init();// 方法的返回值
?