今天碰巧又把以前读过的章节重新复习了下(JavaScript权威指南 - 第五章 语句),刚巧看到这个就记了下,没有什么太大的意义。跟计算机的二进制原则一样,不是0就是1。1 if (expression) {2 // ... 3 } else if (expression1) {4 /...
分类:
其他好文 时间:
2014-06-25 21:14:25
阅读次数:
241
1 currentStyle 可以获取行间样式,但是不兼容 其他浏览器用getComputedStyle(div,null)这个ie低级版本不兼容; if(div.currentStyle){ } else{} 复合样式(background)与单一样式(width) currentStyle 不能...
分类:
Web程序 时间:
2014-06-25 17:08:55
阅读次数:
226
1.使用if-then语句
结构化命令中,最基本的类型就是if-then语句。if-then语句有如下格式:
if command
then
commands
fi 如果你在使用其他编程语言的if-then语句,这种形式可能会让你有点困惑。在其他编程语言中,if语句之后的对象是一个等式来测试是TRUE还是FALSE值。如果该命令的退出状态码是0(该命令成功运行),位于...
分类:
其他好文 时间:
2014-06-25 08:49:26
阅读次数:
263
str1 = ""str2 = Nonestr3 = "hello"if str2: print "not null"else: print "null"这样,不仅可以判定字符串是否为空,还能判定是否为None
分类:
编程语言 时间:
2014-06-25 00:57:06
阅读次数:
240
//加入收藏
function AddFavorite(){
if (document.all) {
addToBookMark(window.location.href, document.title);
} else if (window.sidebar) {
addToBookMark(document.title, window.location.href);
}
}
func...
分类:
其他好文 时间:
2014-06-24 23:21:37
阅读次数:
200
//阶乘 public static int rec(int n){ if(n==1){ return 1; }else{ return n*rec(n-1); } }
分类:
编程语言 时间:
2014-06-24 18:59:04
阅读次数:
257
分支语句 1. 条件语句 if-else ,基本语法形式如下,其中 “[]” 中 的部分可以省略。 if boolean-expression { statement1; } [else if boolean-expression { statement2; } ] [else {statement3; } ] 实例: var number1 = 0;var number2 =...
分类:
其他好文 时间:
2014-06-24 17:40:00
阅读次数:
255
$arr=array('','7','9','11','2','5','13','10','14','12'); $n=count($arr); for($i=2;$i$arr[0]) $high=$m-1; else $low=$m+1; } for($j=$i-1;...
分类:
其他好文 时间:
2014-06-24 14:09:04
阅读次数:
223
今天对条件编译进行了简单回顾. 整理基本语法 以备后来参考.1.#if#if的一般形式是:#if 表达式程序段1#else程序段2# endif# if的执行过程是:如果表达式为真,编译程序段1,否则编译程序段2。作为一种特例,当条件为假不执行任何操作时,可以省略#else。2.#if-#elif-...
分类:
其他好文 时间:
2014-06-24 12:18:36
阅读次数:
203
var t1=null;全局function myClick() { if (t1 == null){ t1 = new Date().getTime(); }else{ var t2 = new Date().getTime(); if(t2 - t1 < 500){...
分类:
其他好文 时间:
2014-06-24 11:07:24
阅读次数:
177