摘要:
形式 语法 结果 注释 数字 {0:N2} 12.36 数字 {0:N0} 13 货币 {0:c2} $12.36 货币 {0:c4} $12.3656 货币 "¥{0:N2}" ¥12.36 科学计数法 {0:E3} 1.23E+001 百分数 {0:P} 12.25% P and p pres... 阅读全文
摘要:
Case具有两种格式。分支结构case语句和条件判断case语句。分支结构case语句,类似于switchselect (case user_name when '张三' then 'zhangsan'when '李四' then 'lisi'when '王五1' then 'wangwu'else '找不到对应' end) as afrom ctl_user条件判断case,类似于if else... 阅读全文
摘要:
验证数字:^[0-9]*$验证n位的数字:^\d{n}$验证至少n位数字:^\d{n,}$验证m-n位的数字:^\d{m,n}$验证零和非零开头的数字:^(0|[1-9][0-9]*)$验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$验证有1-3位小数的正实数:^[0-9]+(.[0-9]{1,3})?$验证非零的正整数:^\+?[1-9][0-9]*$验证非零的负整数:^\-[1... 阅读全文
摘要:
概述: WindowsCE是微软公司嵌入式、移动计算平台的基础,它是一个开放的、可升级的32位嵌入式操作系统,是基于掌上型电脑类的电子设备操作系统,它是精简的Windows 95,Windows CE的图形用户界面相当出色。 简介: 其中CE中的C代表袖珍(Compact)、消费(Consumer)、通信能力(Connectivit)和伴侣(Companion);E代表电子产品(Electro... 阅读全文
摘要:
function formatFloat(src, pos) { return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos); } alert(formatFloat("11111.2222", 2)); 阅读全文
摘要:
在这里我是借用JQ获取input的值。<input id="txtfp" runat="server" type="text" style="width:50px" onblur="getnum()" onkeyup="checkdig()" /> function checkdig() { var value= $("#txtfp").val(); $("#txtfp").val(v... 阅读全文
摘要:
在写这篇文章之前,曾经写过一篇关于AJAX技术的随笔,不过涉及到的方面很窄,对AJAX技术的背景、原理、优缺点等各个方面都很少涉及null。这次写这篇文章的背景是因为公司需要对内部程序员做一个培训。项目经理找到了我,并且征询我培训的主题,考虑到之前Javascript、CSS等WEB开发技术都已经讲解过了,所以决定针对AJAX这一块做一个比较系统的培训,所以这篇文章实际上是一个培训的材料。 在这... 阅读全文
摘要:
Your guess is as good as mine. 我和你一样拿不准。I've nothing to say about this decision.我对这个决议没什么可说的。I really don't know what to say.我确实没有什么主张。I couldn't say,I'm afraid.恐怕我说不上来。It makes no odds to me.这对我无所谓。I... 阅读全文
摘要:
1:You cannot improve the past but you can improve the future! When time is wasted, life is wasted!你不能改变过去,但你可让未来变得更好!浪费了时间,就浪费了生命! 2:Language speaking is like singing. Try to learn English the same wa... 阅读全文
摘要:
var bodyWidth =document.body.clientWidth; //网页可见区域宽 var bodyHeight =document.body.clientHeight; //网页可见区域高 var bodyWidthWithBorder =document.body.offsetWidth; //网页可见区域宽(包括边线的宽) var bodyHeightWithBorder... 阅读全文