gpt4 book ai didi

javascript - jQuery toggle inside toggle,带有单独的选择

转载 作者:行者123 更新时间:2023-11-30 17:57:57 28 4
gpt4 key购买 nike

我正在尝试实现 jquery UI 切换功能。

这是我目前所拥有的: http://jsfiddle.net/PauWy/470/

我试图做到这一点,当我点击 Item1 时,会出现“+”和“-”,我可以点击“+”或“-”来获得不同的结果。但如您所见,存在两个问题:

  1. 当我尝试点击它时,开关会隐藏 +/-。
  2. 改变一个 +/- 会改变所有其他的。

请教如何解决这个问题,谢谢!

最佳答案

好的,那就是:

$('.to-do > span').click(function () {
var ix = $(this).index();
console.log(ix);
$('.add', $(this).parents('div')).toggle(ix == 0);
$('.reduce', $(this).parents('div')).toggle(ix == 1);
return false;
});

JSFiddle

关于javascript - jQuery toggle inside toggle,带有单独的选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17731091/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com