自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

csdn 的 Meizz 写的 javascript 日期格式化函数

// 对Date的扩展,将 Date 转化为指定格式的String // 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 200...

2008-04-05 11:47:40 192

DWR implements AutoComplete

http://www.gridshore.nl/blog/index.php?/archives/52-Creating-an-autocomplete-with-Spring-and-DWR.html http://www.gridshore.nl/blog/index.php?/archives/29-Doing-ajax-with-ajaxtags-and-springframewor...

2008-04-04 14:11:16 125

限制文本框只能输数字(最多两位小数)

function isTriDecimal(value){ if(value!=null&&value!=''){ var decimalIndex=value.indexOf('.'); if(decimalIndex=='-1'){ return false; }else{ var decimalPart=value...

2008-04-03 18:02:44 902

CRUD

In computing, CRUD is an acronym for [b]create[/b], [b]retrieve[/b], [b]update[/b], and [b]delete[/b]. It is used to refer to the basic functions of a database or persistence layer in a software syste...

2008-04-02 16:26:45 168

DWR

[b]http://getahead.org/dwr/getstarted[/b] Getting Started with DWR There are 2 ways to get started with DWR, the easy way is to download the WAR file and have a look around, however this does not ...

2008-04-02 14:13:56 101

html 分割线大全

http://www.yuanma.org/data/2007/0320/article_2429.htm [code="java"] Map names = new HashMap(); Pattern pattern = Pattern.compile("[0-9]*"); Pattern letters_pattern = Pattern.compile("[^a-zA-Z...

2008-04-01 14:36:33 1406

<c:forEach>标签的使用

在JSP的开发中,迭代是经常要使用到的操作。例如,逐行的显示查询的结果等。在早期的JSP中,通常使用Scriptlets来实现Iterator或者Enumeration对象的迭代输出。现在,通过JSTL的迭代标签可以在很大的程度上简化迭代操作。 JSTL所支持的迭代标签有两个,分别是和。在这里介绍的是标签。 简单点说,标签的作用就是迭代输出标签内部的...

2008-04-01 14:29:16 134

使用JSTL标签

1.core_Tags 值

2008-04-01 14:16:36 72

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除