Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

MouseScrollEvent

非标准
该特性是非标准的,请尽量不要在生产环境中使用它!

已废弃
该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。

MouseScrollEvent事件对象代表了当用户在滚动鼠标滚轮或操作其他类似的输入设备时触发的事件.

要优先使用标准化过的WheelEvent来代替该陈旧的事件对象.

方法概述

void initMouseScrollEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in nsIDOMAbstractView viewArg, in long detailArg, in long screenXArg, in long screenYArg, in long clientXArg, in long clientYArg, in boolean ctrlKeyArg, in boolean altKeyArg, in boolean shiftKeyArg, in boolean metaKeyArg, in unsigned short buttonArg, in nsIDOMEventTarget relatedTargetArg, in long axis);

属性

名称

类型

描述
axis long 表明鼠标滚轮滚动的方向. 只读.

常量

Delta 模式

名称 描述
HORIZONTAL_AXIS 0x01 该事件是由鼠标滚轮的横向滚动触发的
VERTICAL_AXIS 0x02 该事件是由鼠标滚轮的纵向滚动触发的

方法

initMouseScrollEvent()

查看 nsIDOMMouseScrollEvent::initMouseScrollEvent().

滚轮相关事件对比

事件类型 事件对象 是否标准 兼容性
mousewheel MouseWheelEvent 非标准 只有Firefox不支持
DOMMouseScroll MouseScrollEvent 非标准 只有Firefox支持
wheel WheelEvent DOM Level 3 Firefox 17+ ie9+

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 未实现 3.5 (1.9.1) 未实现 未实现 未实现
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support 未实现 1.0 (1.9.1) 未实现 未实现 未实现

相关链接

文档标签和贡献者

 此页面的贡献者: ziyunfei, teoli
 最后编辑者: teoli,