验证是否中奖的小例子

Posted verayangnakiss

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了验证是否中奖的小例子相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8" />
  <title></title>
  <style type="text/css">
   *{
    margin: 0;
    padding: 0;
   }
   .box{
    width: 400px;
    height: 200px;
    margin: 100px auto;
    border: solid 1px grey;
   }
   input{
    width:200px;
    height: 50px;
    margin-left: 20px;
    margin-top: 75px;
   }
   button{
    width: 50px;
    height: 50px;
    margin-left: 20px;
   }
  </style>
  <script type="text/javascript">
  window.onload = function(){
   function $(id){
    return document.getElementById(id);
   }
   var attr = [10066];
   $(‘btn‘).onclick = function(){
    for(var i=0;i<attr.length;i++){
     if($(‘txt‘).value==attr[i])
     {
      alert(‘恭喜,您中奖了‘);
     }
     else{
      alert(‘抱歉,欢迎下次再来‘);
     }
    }
   }
  }
  </script>
 </head>
 <body>
  <div class="box">
   <input type="text" placeholder="请输入您的号码进行过查询" id="txt" /><button id="btn">查询</button>
  </div>
    </body>
</html>

 

以上是关于验证是否中奖的小例子的主要内容,如果未能解决你的问题,请参考以下文章

多进程——waitpid()函数的小例子

使用Apache HttpClient实现多线程下载的小例子

IbLpJnJErT分页查询的小例子

spring的一个小例子--解析前面的小例子

spring小例子-springMVC+mybits整合的小例子

[Python]Python 使用 for 循环的小例子