onload 命令无反应
//1)用jquery吧 $(document).ready(function(){ // 在这里写你的代码... }); //2) /************** 用来window.load 多个函数。 window.onload是不能同时加载多个函数的; 比如: function t(){ alert("ttt") } function b(){ alert("bbb") } window.onload =t ; window.onload =b ; 这样做 ,只会输出 b ; addLoadEvent()这个函数 就是解决这个问题的。 用法: addLoadEvent(t); addLoadEvent(b); **************/