文章列表
<script type="text/javascript">
/**
*新增String物件的3個Method
**/
//去除前後(左右)空白
String.prototype.Trim = function() {
return this.replace(/(^[\s]*)|([\s]*$)/g, "");
}
//去左空白
String.prototype.LTrim = function() {
return this.replace(/(^[\s]*)/g, &q ...