我使用原型版本1.6.0.2
Event.observer(window,'load',function(){
function1();// function with ajax request
function2();//another function with ajax request
});
它适用于FireFox,Chrome但在Opera中却很奇怪 Func2和fucnc2没有运行,但如果页面向下滚动它会立即运行两个函数
Plz帮助。 感谢。
答案 0 :(得分:1)
功能是:
Event.observe(element, eventName, handler)
不
Event.observer(element, eventName, handler)
@see:http://www.prototypejs.org/api/event/observe
(Opera总是对的): - )