MouseMove事件在firefox中无效

时间:2013-11-06 04:17:52

标签: javascript jquery

为路径元素绑定了一个mousemove事件,如下所示

    $(seriesRender.gSeriesGroupEle.childNodes[pointIndex]).bind('mousemove', seriesRender.onChartMove);

 onChartMove: function(evt){
    debugger;
      },

这个函数在IE和chrome中被触发,但在firefox中没有,有没有其他方法可以做到这一点

1 个答案:

答案 0 :(得分:3)

我前段时间曾做过,

$('#control-vol').bind('mousedown', function(e){
    $('#control-vol').bind('mousemove', function(e){
         // my stuff
    });

    $('#control-vol').bind('mouseup',function(){
        $('#control-vol').unbind('mousemove')
    });
});

另请参阅以下演示链接

http://jsbin.com/icuso/1/edit