磨刀不误砍柴工

合抱之木,生于毫末;九层之台,起于累土;千里之行,始于足下。

   ::  ::  ::  :: 管理

07 2010 档案

常用到的表格样式
     摘要: table css 为表格设置css样式  阅读全文

posted @ 2010-07-27 17:48 liwei5891 阅读(424) | 评论 (0)  编辑

javaScript去空格
     摘要: String.prototype.trim = function ()
{
return this .replace( / ( ^ \s * ) | (\s * $) / g, "" );
}
String.prototype.ltrim = function ()
{
return this .replace( / ( ^ \s * ) / , "" );
}
String.prototype.rtrim = function ()
{
return this .replace( / (\s * $) / , "" );
}  阅读全文

posted @ 2010-07-15 14:47 liwei5891 阅读(394) | 评论 (0)  编辑