如何在jQuery this._on()中使用事件捕获概念;

时间:2015-10-22 04:48:07

标签: javascript jquery html

我正在使用jQuery this._on()函数来绑定鼠标事件,我想在this._on()中使用事件捕获概念。

this._on($("#myId"), "mousedown", callMouseDown);

callMouseDown: function (e) {
    //Mouse down event
},

任何人都可以帮助我,在这里如何应用事件捕获概念(父母对孩子)。

谢谢, Bharathi。

1 个答案:

答案 0 :(得分:1)

使用this访问您的方法。

this._on($("#myId"), "mousedown", this.callMouseDown);

callMouseDown: function (e) {
    //Mouse down event
},

<强>更新

jQuery事件不支持事件捕获。但它支持事件冒泡。

请查看以下链接以获取更多信息

Why does jQuery event model does not support event Capture and just supports event bubbling