主頁(yè) > 知識(shí)庫(kù) > html實(shí)現(xiàn)隨機(jī)點(diǎn)名器的示例代碼

html實(shí)現(xiàn)隨機(jī)點(diǎn)名器的示例代碼

熱門標(biāo)簽:貴陽(yáng)ai外呼系統(tǒng) 智能電銷機(jī)器人廣告語 重慶人工智能電銷機(jī)器人報(bào)價(jià) 愛巢地圖標(biāo)注 電話機(jī)器人批發(fā) crm外呼系統(tǒng)好不好 強(qiáng)訊外呼系統(tǒng) 長(zhǎng)春極信防封電銷卡公司 電銷外呼線路改不外呼線路

此點(diǎn)名器開始點(diǎn)名后需點(diǎn)擊停止按鈕完成點(diǎn)名,因?yàn)槭蔷?jiǎn)版沒有考慮自動(dòng)停止需求。姓名數(shù)據(jù)以字符串形式儲(chǔ)存,適合小范圍點(diǎn)名使用,有大量需求可自己適當(dāng)改進(jìn)。

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>隨機(jī)點(diǎn)名生成</title>

    <style>
        /* 頁(yè)面css樣式 */
        .wrapper {
            width: 800px;
            margin: 100px auto;
            border: 1px solid #ddd;
            text-align: center;
        }

        .box li {
            vertical-align: top;
            display: inline-block;
            width: 100px;
            height: 50px;
            border: 2px solid #ddd;
            border-radius: 15px;
            text-align: center;
            line-height: 50px;
            margin: 5px;
        }
        
        .wrapper button {
            border: none;
            width: 100px;
            height: 50px;
            border-radius: 10px;
            cursor: pointer;
            outline: none;
            margin-top: 20px;
            font-weight: bolder;
            color: #333;
            background-color: rgb(14, 146, 43);
        }

        .wrapper button {
            display: inline-block;
        }

        body {
            background-color: #eee;
        }
    </style>

</head>

<body>
    <div class="wrapper">
     <h1 align="center">隨機(jī)點(diǎn)名系統(tǒng)</h2>
      //實(shí)時(shí)顯示系統(tǒng)時(shí)間標(biāo)簽
        <h6 id="data" align="right"></h6>
        <ul class="box"></ul>
        <button class="start">開始</button>
        <button class="stop">停止</button>
    </div>
</body>

<script>
    //定義全局變量方便引用
    var boxUl = document.getElementsByClassName('box')[0];
    var start = document.getElementsByClassName('start')[0];
    var stop = document.getElementsByClassName('stop')[0]
    var oLi = document.getElementsByTagName('li');

    //數(shù)據(jù)準(zhǔn)備
    var nameString = new String("張三,李四,王五,趙六,周七,田八,國(guó)九,歸零,張3,李4,王5,趙6,周7,田8,國(guó)9,歸0");
    var nameArr = nameString.split(",");

    //獲取每個(gè)學(xué)生姓名添加到標(biāo)簽中,自動(dòng)解析html標(biāo)簽
    var str = "";
    for (let i = 0; i < nameArr.length; i++) {
        str += "<li >" + nameArr[i] + "</li>"
    }
    boxUl.innerHTML = str;

    //添加開始按鈕的點(diǎn)擊事件
    var timer = null;
    start.onclick = function () {
        // 設(shè)置定時(shí)器
        timer = setInterval(function () {

            // 根據(jù)數(shù)組長(zhǎng)度范圍生成隨機(jī)數(shù)
            var i = Math.floor(Math.random() * nameArr.length);
            // 先通過for循環(huán)清空所有style屬性
            for (var j = 0; j < oLi.length; j++) {
                oLi[j].removeAttribute("style");
            }
            // 為隨機(jī)選擇的li顏色屬性
            oLi[i].style.background = "red";
        }, 150);
    };
    // 點(diǎn)擊停止
    stop.onclick = function () {
        // 清空定時(shí)器停止點(diǎn)名
        clearInterval(timer);
    }
    //頁(yè)面初始化時(shí)間設(shè)置
    window.onload = function () {
        datatime();
    }
    //頁(yè)面時(shí)間動(dòng)態(tài)刷新
    setInterval(datatime, 1000);

    function datatime() {
        let data = new Date();
        let dataString ="現(xiàn)在是北京時(shí)間:" + data.toLocaleString();
        document.getElementById("data").innerHTML = dataString;
    }
</script>

附一張效果圖

到此這篇關(guān)于html實(shí)現(xiàn)隨機(jī)點(diǎn)名器的示例代碼的文章就介紹到這了,更多相關(guān)html隨機(jī)點(diǎn)名器內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!

標(biāo)簽:上海 陜西 山南 吳忠 廣安 保定 清遠(yuǎn) 內(nèi)蒙古

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html實(shí)現(xiàn)隨機(jī)點(diǎn)名器的示例代碼》,本文關(guān)鍵詞  html,實(shí)現(xiàn),隨機(jī),點(diǎn)名,器,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html實(shí)現(xiàn)隨機(jī)點(diǎn)名器的示例代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于html實(shí)現(xiàn)隨機(jī)點(diǎn)名器的示例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章