• 抽奖JQ


    <!DOCTYPE html>
    <html lang="en">

    <head>
        <meta charset="UTF-8">
        <title>抽签</title>
        <script src="jquery-3.4.1.min.js"></script>
    </head>
    <script>
        $(function () {
            var names = [
                "张三",
                "李四",
                "诸葛亮",
                "刘备",
                "曹操",
                "韩非",
                "张良",
                "卫庄",
                "盖聂",
            ];
            var time;
            var index;
            $("#start").prop("disabled", false);
            $("#stop").prop("disabled", true);
            $("#start").click(function () {
                time = setInterval(function () {
                    $("#start").prop("disabled", true);
                    $("#stop").prop("disabled", false);
                    index = Math.floor((Math.random() * 10) + 1);
                    $("#name").prop("value", names[index]);
                });
            });
            $("#stop").click(function () {
                clearInterval(time);
                $("#start").prop("disabled", false);
                $("#stop").prop("disabled", true);
            });
        });
    </script>

    <body>
        <input type="text" id="name" value="张三" style=" 250px;height: 50px;border: 2px solid black;text-align: center;
    margin-left:450px;margin-top: 100px;red;color: white; font-size: 26px">
        <input type="button" id="start" value="开始" style=" 70px;height: 35px; margin-left: 100px">
        <input type="button" id="stop" value="结束" style=" 70px;height: 35px;">
    </body>

    </html>
  • 相关阅读:
    Dynamics CRM 2011/2013 通过Javascript给lookup字段赋值
    shell重定向(大于号,小于号,左右,2>&1,&)
    Dynamics CRM2011 同一个FORM表单同一个字段可以摆放多次
    词的向量表示
    机器翻译领域的新突破
    Dynamics CRM2011 隐藏sub-grid 新建项和添加现有项按钮
    sed常用方法与命令
    Dynamics CRM Odata QueryUrl中的SetName问题
    hive发杂数据结构的使用,struct,array,map
    maven 经常使用命令
  • 原文地址:https://www.cnblogs.com/yeyuyuni/p/11586576.html
Copyright © 2020-2023  润新知