码迷,mamicode.com
首页 >  
搜索关键字:if then else    ( 23991个结果
JS小技巧大本事(持续更新)
1. 复制N个字符 String.prototype.repeat = function(num){ return (new Array(++num)).join(this);}var a = 'A';a.repeat(5); //'AAAAA'2. 替代if…else…var result;res...
分类:Web程序   时间:2014-07-16 21:33:45    阅读次数:256
Lesson 7-8 What are you worried about?
by Nica 一 生词 1 result : something that is caused directly by something else that h...
分类:其他好文   时间:2014-07-16 20:26:49    阅读次数:187
浏览器的判断;
JS判断是不是IE浏览器(IE6-IE11) function isIE() { //ie? if (!!window.ActiveXObject || "ActiveXObject" in window) return true; else r...
分类:其他好文   时间:2014-07-16 19:43:15    阅读次数:161
工作中常用SQL 查询语句备忘
--当A列大于B列时选择A列否则选择B列,当B列大于C列时选择B列否则选择C列。select (case when a>b then a else b end ), (case when b>c then b esle c end) from table_name--求...
分类:数据库   时间:2014-07-11 11:30:56    阅读次数:208
获取Table的创建语句
-------------------------sql脚本---------------------------SELECT (CASE WHEN a.colorder=1 THEN d.name ELSE '''' END) N'表名', a.colorder N'字段序号', a.name N...
分类:其他好文   时间:2014-07-11 11:01:19    阅读次数:208
Could not open Selected VM debug port (8700)
在运行项目的时候,eclipse弹出提示框“Could not open Selected VM debug port (8700). Make sure you do not have another instance of DDMS or of the eclipse plugin running. If it's being used by something else, choose a new port number in the preferences.” 在终端输入:netstat -ano ...
分类:其他好文   时间:2014-07-10 23:03:07    阅读次数:432
反汇编--C语言(判断与分支)
if  else条件判断 C语言实现: void Conditional(int c){ if (c>0 && c10 && c<100) { printf("c大于10,小于100"); } else{ printf("其它"); } } void main(){ int num=5;...
分类:编程语言   时间:2014-07-10 22:56:47    阅读次数:250
正则表达式验证邮箱,qq,座机,手机,网址
手机: var reg=/^1[34578]\d{9}$/; if(reg.test("你输入的手机号码") ) { alert("手机号码输入正确") }  else { alert("手机号码输入有误") } QQ: var reg=/^[1-9]\d{4,11}$/; 邮箱: var reg=/^\w+@[0-9a-zA-Z\-]+[a-zA...
分类:移动开发   时间:2014-07-10 17:39:15    阅读次数:340
javascript 心得
1.&&和||等逻辑判断运算标记可以当成条件运算来使用例如:var a = b =c = "12";(a=="13"&&b++)||(c--);相当于if(a=="13"){b++}else{c--};虽然至少了几个字符,但是也是一种解决问题的方法。在大量逻辑判断的时候可以起到减少代码的作用,但是弊...
分类:编程语言   时间:2014-07-10 16:41:06    阅读次数:197
java异常处理
Java异常处理总结           异常处理是程序设计中一个非常重要的方面,也是程序设计的一大难点,从C开始,你也许已经知道如何用if...else...来控制异常了,也许是自发的,然而这种控制异常痛苦,同一个异常或者错误如果多个地方出现,那么你每个地方都要做相同处理,感觉相当的麻烦!         Java语言在设计的当初就考虑到这些问题,提出异常处理的框架的方案,所有的异常都可以...
分类:编程语言   时间:2014-07-09 11:07:43    阅读次数:260
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!