function init() { alert("abc"); return function() { alert("123"); } } // window.onload=init;//方法的引用 window.onload = init();// 方法的返回值
?