代码如下:/*———————————– Web Application JavaScript Library 2009.11 janchie ————————————*/ //String原生对象扩展 置空左右端空格 String.prototype.trim = function(){ return this.replace(/(^[\s\n\t\r]*)|([\s\n\r\t]*$)/g, “”); }; //Date原生对象扩展 格式化输出 Date.prototype.format = function (string) { var self = this; var p = funct