Flot:如何使用onchange而不是onclick(复选框)来关闭系列?

发布于 2025-01-08 00:15:44 字数 689 浏览 1 评论 0原文

我知道可以使用图例来打开/关闭 flot 系列,如 页面。

在该示例中,更改似乎是单击事件的结果。

我试图让它在使用 onchange 事件时也能工作。

如果我(添加然后)单击此按钮...

< /code>

...该复选框已被禁用,但图形未重新绘制。

我尝试通过两种方式解决此问题:

  1. 我将 plotAccordingToChoices(); 添加到按钮的 onclick 中,并
  2. 更改了 choiceContainer.find("input ").click(plotAccordingToChoices); 代码:尝试使用 change 而不是 click

这不起作用。有什么想法吗?

I know it's possible to use a legend to turn on/off flot series, as can be seen on this page.

In that example, the change seems to be the result of the click event.

I'm trying to get this to also work when an onchange event is used.

If I (add and then) click this button...

<input type="button" value="Disable USA" onclick="document.getElementById('idusa').checked = false;">

...the checkbox is being disabled, but the graph isn't being redrawn.

I tried to fix this issue in two ways:

  1. I added plotAccordingToChoices(); to the onclick of the button, and
  2. I changed the choiceContainer.find("input").click(plotAccordingToChoices); code: tried using change instead of click.

This didn't work. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

徒留西风 2025-01-15 00:15:44

这是一个非常棘手的问题,据我所知(而且我不太了解),从按钮更改复选框不会触发其更改事件,但由于您使用的是函数,因此只需更改属性即可,然后触发重绘函数。我还将 .click() 更改为 .change() 只是为了达到效果:

在 Flot 代码中,我向每个元素添加了一个类,并将该类设置为具有更改事件:

choiceContainer.append('<br/><input type="checkbox" name="'
 + key+'" checked="checked" id="id' + key + '" class="legend">' +
 '<label for="id' + key + '">' + val.label + '</label>');
$(".legend").change(plotAccordingToChoices);

现在对于您的按钮,我将其切换为 USA:

    $("#clicker").click( function(){
    if($("#idusa").is(":checked"))
        $("#idusa").attr('checked', false);
    else
        $("#idusa").attr('checked',true)
    plotAccordingToChoices();
    });

<强>编辑:
您可以使用 .trigger('change') 来触发更改事件。

    $("#clicker").click( function(){
    if($("#idusa").is(":checked"))
        $("#idusa").attr('checked', false);
    else
        $("#idusa").attr('checked',true)
    $("#idusa").trigger('change');
    });

最后,我将按钮更改为按钮:

<button id="clicker">Disable USA</button> 

如果需要,您可以稍微修改一下,并为每个复选框都有一个按钮。
我希望这对你有用。

This is a really tough problem, as far as I know (and I don't know that much) changing the checkbox from the button will not fire its change event, but since you're using a function, you can just change the attribute, then fire the redraw function. I also changed the .click() to .change() just for effect:

From Flot code, I added a class to each element and set that class to have a change event:

choiceContainer.append('<br/><input type="checkbox" name="'
 + key+'" checked="checked" id="id' + key + '" class="legend">' +
 '<label for="id' + key + '">' + val.label + '</label>');
$(".legend").change(plotAccordingToChoices);

Now for your button, I made it toggle USA:

    $("#clicker").click( function(){
    if($("#idusa").is(":checked"))
        $("#idusa").attr('checked', false);
    else
        $("#idusa").attr('checked',true)
    plotAccordingToChoices();
    });

EDIT:
You can use .trigger('change') to fire the change event.

    $("#clicker").click( function(){
    if($("#idusa").is(":checked"))
        $("#idusa").attr('checked', false);
    else
        $("#idusa").attr('checked',true)
    $("#idusa").trigger('change');
    });

Finally I changed the button to a button:

<button id="clicker">Disable USA</button> 

You could modify this a little and have a button for each checkbox if you wanted.
I hope this works for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文