📌  相关文章
📜  jquery 随机颜色数组 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:33.153000             🧑  作者: Mango

代码示例1
// jQuery Random Color on button click
let myColors = ['red', 'green', 'blue', 'pink'];

$('button').click(function(){

    let randomColor = myColors[Math.trunc(Math.random() * myColors.length)];
    $('h1').css('color', randomColor);

});