Jquery类选择器单击重复功能

时间:2017-07-25 10:33:56

标签: javascript jquery class selector

我有一个带有点击绑定的类选择器。当我点击多次时会出现问题,它会在第一次调用该函数两次,在下一次单击时调用三次,依此类推。

var point = data.points[0].x;
    var counter = 0;          
    $(".menuOption").click(function () {
        console.log(counter);
        counter++;    
        var code = $(this).attr('id');
        var text = $(this).html();
        var newLine = {
            type: 'line',
            x0: point,
            x1: point,
            y0: 0,
            y1: 1,
            yref: 'paper',
            line: {
                color: 'black',
                width: 1
            },
            name: text
        };
        var annotation = {
            x: point,
            y: data.points[0].y,
            xref: 'x',
            yref: 'y',
            text: code,
            textangle: 90,
            showarrow: true,
            arrowhead: 7
        }
        Plotly.relayout("grap", {
            'shapes[0]': newLine,
            'hovermode': 'closest',
            'annotations[0]': annotation
        });

    });    

我在下面的笔中添加了一些console.log。

CodePen

1 个答案:

答案 0 :(得分:1)

在第76行,您正在设置点击监听器:

myPlot.on('plotly_click', function (data) { ... }

在该处理程序(第106行)中,您将在菜单选项上设置另一个单击侦听器:

$(".menuOption").click(function () { ... }

因此,每次plotly_click事件发生时,您都会添加另一个点击侦听器。您应该将menuOption单击侦听器的绑定移动到事件处理程序之外,或者在设置新侦听器之前取消绑定侦听器。