PrototypeJS观察窗户尺寸变化?

时间:2009-10-18 15:17:12

标签: javascript dom prototypejs observer-pattern

我正在尝试创建自己的'模态'窗口,因为PrototypeJS当前不存在这些窗口,这符合我的需求。

问题是观察document.documentElement以更改视口(或document.body,取决于Quirks / Standard模式)的高度和宽度。

1 个答案:

答案 0 :(得分:5)

你不能只观察window.onresize事件吗?

Event.observe(window, 'resize', function() { alert('resized'); });