码迷,mamicode.com
首页 > 其他好文 > 详细

口令,判断值

时间:2016-08-20 17:45:10      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE HTML>
  <html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <title>无标题文档</title>
  <script>
  window.onload = function (){
  var oText = document.getElementById(‘text1‘);
  var oBtn = document.getElementById(‘btn1‘);
   
  oBtn.onclick = function (){
  if( oText.value == ‘‘ ){
  alert(‘请输入‘);
  } else if ( oText.value == ‘CSS‘ ){
  alert(‘ok,您输入的是:CSS,恭喜通过!‘);
  } else if ( oText.value == ‘JS‘ ){
  alert(‘ok,您输入的是:CSS,恭喜通过!‘);
  } else if ( oText.value == ‘HTML5‘ ){
  alert(‘ok,您输入的是:CSS,恭喜通过!‘);
  } else {
  alert(‘我不喜欢你写的内容,88~‘);
  }
  };
  };
  </script>
  </head>
   
  <body>
   
  <input id="text1" type="text" />
  <input id="btn1" type="button" value="口令确认" />
  <!--
  CSS
  JS
  HTML5
  -->
   
  </body>
  </html>

口令,判断值

标签:

原文地址:http://www.cnblogs.com/lidepeng/p/5790768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!