gpt4 book ai didi

Javascript:onScroll 事件(使用 Prototype)在 IE 上不起作用?

转载 作者:数据小太阳 更新时间:2023-10-29 05:41:34 24 4
gpt4 key购买 nike

我正在尝试使用原型(prototype)以这种方式触发 onScroll 事件:

Event.observe(document, 'scroll', function(){
alert('boo');
});

它在 Firefox 上完美运行,但在 IE 上没有任何反应。有谁知道为什么?如果有其他方法可以做到这一点?

谢谢

最佳答案

尝试将其附加到窗口:

Event.observe(window, 'scroll', function() {
alert('boo');
});

适用于 IE、FF。老实说,我不知道为什么将它附加到 document

关于Javascript:onScroll 事件(使用 Prototype)在 IE 上不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1090497/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com