Yingc
V2EX  ›  问与答

中秋节快到,有没有抽奖源码分享?

  •  
  •   Yingc · Sep 29, 2017 · 3581 views
    This topic created in 3174 days ago, the information mentioned may be changed or developed.

    最近公司筹划抽奖活动,希望通过网页形式实现。 员工通过简单登记,并且去抽奖,带后台方便记录中奖者信息。 不要微信的,单纯 web。

    Nathanzheng
        1
    Nathanzheng  
       Sep 29, 2017
    员工发个号,随便找个随机摇号网站,bingo !
    Perry
        2
    Perry  
       Sep 29, 2017
    psirnull
        3
    psirnull  
       Sep 29, 2017 via iPhone
    公司想借机开除几个抢月饼的程序员
    justfindu
        4
    justfindu  
       Sep 29, 2017
    function random(){
    return 'Yingc';
    }
    lifesimple
        5
    lifesimple  
       Sep 29, 2017
    let ids = []; // 输入员工工号
    for(let i = 0;i < 100;i++) {
    ids.push(`id-${i}`)
    }
    let maxIndex = ids.length; // 总数
    let awardCount = 10; // 中奖数
    let awardNos = []; // 获奖序号
    while(awardNos.length < awardCount) {
    let index = Math.floor(Math.random()*maxIndex);
    if(awardNos.indexOf(index) == -1) {
    awardNos.push(index);
    console.log(ids[index]); // 输出中奖员工工号
    }
    }
    hgc81538
        6
    hgc81538  
       Sep 29, 2017
    5 分钟现场撸代码——谈总结会抽奖程序
    https://75team.com/post/luckey-draw-in-5-minutes.html
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5470 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 72ms · UTC 07:42 · PVG 15:42 · LAX 00:42 · JFK 03:42
    ♥ Do have faith in what you're doing.