事件'窗口加载'在使用原型的opera中不起作用

时间:2010-10-09 17:26:52

标签: javascript prototypejs document opera

我使用原型版本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帮助。 感谢。

1 个答案:

答案 0 :(得分:1)

功能是:

Event.observe(element, eventName, handler)

Event.observer(element, eventName, handler)

@see:http://www.prototypejs.org/api/event/observe

(Opera总是对的): - )