jqPlot中的键盘事件左/右箭头

时间:2013-09-10 11:33:43

标签: events jqplot keypress keydown

我想制作一个响应键的工具提示(左/右)。如何以类似的方式添加事件:

$.jqplot.eventListenerHooks.push(['jqplotClick', handleClick]);

我需要在事件中获得'情节'对象。

1 个答案:

答案 0 :(得分:0)

您可能希望从checking out one of my other answers开始,并在那里查看代码示例。它提供了一种监听键盘事件的方法。 它归结为以下代码:

$(document).keydown(function(e) {
    if (e.keyCode == 37) {
        //on left arrow key down 
    }
    else if (e.keyCode == 39) {
        //on right arrow key down
    }
});

请记住,要让样本响应键,必须选择jsfiddle上的“Result”区域。

就个人而言,对于工具提示,我会使用自定义工具提示,以便更好地控制它。例如,如何在this answer中提供。