常用到的表格樣式
摘要: table css 為表格設置css樣式 閱讀全文
posted @ 2010-07-27 17:48 liwei5891 閱讀(446) | 評論 (0) 編輯
07 2010 檔案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 閱讀(411) | 評論 (0) 編輯
|