判断--热身小练习

在文本输入框输入口令,点击按钮进行判断;

如果口令正确,就“恭喜通关”;

如果口令错误,就“88~~”

 1 <!DOCTYPE HTML>
 2 <html>
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 5 <title>无标题文档</title>
 6 <script>
 7 window.onload = function (){
 8     var oText = document.getElementById(‘text1‘);
 9     var oBtn = document.getElementById(‘btn1‘);
10
11     oBtn.onclick = function (){
12         if( oText.value == ‘‘ ){
13             alert(‘请输入‘);
14         } else if ( oText.value == ‘CSS‘ ){
15             alert(‘ok,您输入的是:CSS,恭喜通过!‘);
16         } else if ( oText.value == ‘JS‘ ){
17             alert(‘ok,您输入的是:JS,恭喜通过!‘);
18         } else if ( oText.value == ‘HTML‘ ){
19             alert(‘ok,您输入的是:HTML,恭喜通过!‘);
20         } else {
21             alert(‘我不喜欢你写的内容,88~‘);
22         }
23     };
24 };
25 </script>
26 </head>
27
28 <body>
29
30 <input id="text1" type="text" />
31 <input id="btn1" type="button" value="口令确认" />
32 <!--
33     CSS
34   JS
35   HTML5
36 -->
37
38 </body>
39 </html>

示例代码

时间: 2024-10-29 19:11:32

判断--热身小练习的相关文章

如何判断大端小端?

一.最简单的做法: 参考(深入理解计算机系统中文版第二版,P28,show_bytes) 转化成usigned char*的byte_pointer: 然后遍历输出每个字节的值,即可判断. 输入可以是任意一个数. 类似于:http://blog.csdn.net/yuucyf/article/details/7193148 二.利用联合 由于联合是共享地址的,所以可以采用如下方式: 1 #include <iostream> 2 using namespace std; 3 4 union 5

oracle group by rollup decode grouping nvl等判断或者小计合计心得

在做oracle 047第12题时,遇到group by 语句,由此遇到group by  rollup,decode,grouping,nvl,nvl2,nullif,RATIO_TO_REPORT等. 1. decode  与if...then,case...when...这类流数据语句功能差不多 decode(条件,值1,返回值1,值2,返回值2,...值n,返回值n,缺省值) 该函数的含义如下: IF 条件=值1 THEN RETURN(值1) ELSIF 条件=值2 THEN RETU

python3判断循环小练习

1.使用while循环输出1 2 3 4 5 6 8 9 10 i = 1 while i <= 10: if i == 7: i += 1 print(end=' ') continue print(i, end=' ') i += 1 2.求1-100的所有数的和 s = 0 for i in range(1, 101): s = s + i i += 1 print(s) 3.输出 1-100 内的所有奇数 for i in range(1, 100): if i % 2 == 1: pr

Freemarker中的null判断,小坑一枚

上次写到,在Freemarker中日期转换,可以提取成工具方法.主要是Freemarker对null的处理方式,非常坑爹.只要一个对象或对象的属性为null,就报错,虽然不影响界面显示,但控制台和日志总是打印"错误信息",很是不爽.所以,想写方法判断对象是否为null,再做正确的显示. 上次写的2个Freemarker函数,实际过程中只用到了第1个,正常.把int类型的日期转换成字符串    <#function number_to_ymdhms date> <#if

JS判断字符串小括号是否成对合法

一.思路 要判断()是否成对: 运用栈的"后进先出" 的特点,定义一个空数组,作为栈: for循环遍历字符串,当遇到"("的时候就把"("添加到空数组最顶端,push方法,记录发现一个左括号: 当遇到")"就把数组中最顶端的元素弹出来,pop方法,抵消一个左括号.注意如果此时数组是空的,但是遇到")"说明没有"("缺少成对的")",则返回false: 不是括号的字符就

判断大端小端模式

代码如下: big_little_endian.c 1 #include <stdio.h> 2 3 #define BIG_ENDIAN 1 4 #define LITTEL_ENDIAN 0 5 6 int big_littel_endian(void) 7 { 8 union num 9 { 10 int a; 11 char b[4]; 12 }c; 13 14 c.a = 0x1234; 15 16 if(c.b[0] == 0x34) 17 { 18 return LITTEL_E

[UNP]判断大端小端

1 #include "unp.h" 2 3 int 4 main(int argc, char **argv) 5 { 6 union { 7 short s; 8 char c[sizeof(short)]; 9 } un; 10 11 un.s = 0x0102; 12 printf("%s: ", CPU_VENDOR_OS); 13 if (sizeof(short) == 2) { 14 if (un.c[0] == 1 && un.c[

继承方法给页面加上Session判断的小例子

新建一个继承自System.Web.UI.Page的类,然后重写OnInit: using System; using System.Data; using System.Configuration; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControl

CRC 自动判断大端 小端

/* aos_crc64.c -- compute CRC-64 * Copyright (C) 2013 Mark Adler * Version 1.4 16 Dec 2013 Mark Adler */ /* This software is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any damages arising