gpt4 book ai didi

javascript - 如何以更简单、不那么荒谬的方式写这个

转载 作者:行者123 更新时间:2023-11-28 11:07:47 25 4
gpt4 key购买 nike

这对我来说似乎很荒谬。我应该使用数组还是有其他更好的解决方案?

$('.hoursRange').change(function() {
if ('0' == $(this).val())
{
$(this).val('00');
return false;
}
if ('1' == $(this).val())
{
$(this).val('01');
return false;
}
if ('2' == $(this).val())
{
$(this).val('02');
return false;
}
if ('3' == $(this).val())
{
$(this).val('03');
return false;
}
if ('4' == $(this).val())
{
$(this).val('04');
return false;
}
if ('5' == $(this).val())
{
$(this).val('05');
return false;
}
if ('6' == $(this).val())
{
$(this).val('06');
return false;
}
if ('7' == $(this).val())
{
$(this).val('07');
return false;
}
});

最佳答案

只需使用正则表达式:

$(this).val($(this).val().replace(/^[0-7]$/, "0$&"));

关于javascript - 如何以更简单、不那么荒谬的方式写这个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4666779/

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