我有一个 while 循环,它在 20 秒内从 175 计数到 255,即 175、215、235、255。这些结果存储在变量中,该变量使用 jQueryred
连接到一个属性中。background-color
$(function(){
var red=175;
while (red <= 235){
red+=20;
console.log(red);
}
$('.change').next().css({"backgroundColor":"rgb("+red+",255,50)"})
});
当我 console.logred
它记录上面提到的所有四个数字。当红色连接到backgroundColor
值时,它仅使用返回的最终数字。我的问题是,有没有办法可以将四个单独的结果委托给同一个类backgroundColor
的四个连续的值?<divs>