撒科打诨
转换一下思路可能比较好,用绑定,而不用调用,这样就可以在页面的任何地方添加一个事件,具体实现://定义绑定函数的方法function mybind(elem, _type, handle) {if (elem.addEventListener) {elem.addEventListener(_type, handle, false);} else {elem.attachEvent("on" + _type, handle);}}//在window.onload上绑定times()等等mybind(window, "load", times);// 在其他地方附加一些语句mybind(window, "load", function(){// 这里写需要运行的程序});