gpt4 book ai didi

javascript - 根据复选框点击状态更新元素

转载 作者:太空宇宙 更新时间:2023-11-04 15:09:19 25 4
gpt4 key购买 nike

我正在尝试根据是否单击复选框来显示/隐藏元素。

我怎样才能改进我的代码(避免太多的“如果”):

checkboxId= clickedcheckboxId;

if ( checkboxId== 0 ) {
removeElements();
$("#x1").fadeIn('fast');
}
else if ( checkboxId== 1 ) {
removeElements();
$("#y2").fadeIn('fast');
}
else if ( checkboxId== 2 ) {
removeElements();
$("#z3").fadeIn('fast');
}
else if ( checkboxId== 3 ) {
removeElements();
$("#w4").fadeIn('fast');
}

最佳答案

使用数组:

if (checkboxId >= 0 && checkboxId <= 3) {
var a = ["x1", "y2", "z3", "w4"];
removeElements();
$("#"+a[checkboxId]).fadeIn('fast');
}

关于javascript - 根据复选框点击状态更新元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21892742/

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