Here you can find the source of getDateString()
Date.prototype.getDateString = function(){ var S = this.getSeconds(), M = this.getMinutes(), H = this.getHours(), dd = this.getDate(), mm = this.getMonth()+1, yyyy = this.getFullYear();/*from w w w. j a va 2 s.c om*/ if(dd<10){ dd ='0'+dd } if(mm<10) { mm ='0'+mm } date = dd+'/'+mm+'/'+yyyy+'|'+H+'|'+M+'|'+S; return date; }
String.prototype.toDate = function(str) { var m = this.match(/(\d+)-(\d+)-(\d+)\s+(\d+):(\d+):(\d+)/); return new Date(+m[1], +m[2] - 1, +m[3], +m[4], +m[5], +m[6]);
String.prototype.toDateFormat = function (format) { return this.parseToDate().toDateFormat(format); };
if (!window.console) { console = { log: function (msg) { }; }; String.prototype.toDateFromAspNet = function () { var dte = eval("new " + this.replace(/\ dte.setMinutes(dte.getMinutes() - dte.getTimezoneOffset()); ...
String.prototype.toDateFromAspNet = function () { var dte = eval("new " + this.replace(/\ dte.setMinutes(dte.getMinutes() - dte.getTimezoneOffset()); return dte; };
String.prototype.getDate = function() { return this.toDate().getDate();
Date.prototype.getDateString = function () { return this.getFullYear() + '/' + this.getMonth2() + '/' + this.getDate2(); }; Date.prototype.addDays = function (days) { this.setDate(this.getDate() + days); return this; }; Date.prototype.getDate2 = function () { var date = this.getDate(); ...
Date.prototype.getDateString = function () { return this.getFullYear() + '/' + this.getMonth2() + '/' + this.getDate2(); };
Date.prototype.getDateString = function(str) var dnames = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday']; var mnames = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'Novemeber', 'December']; str = str.replace('%day', dnames[this.getDay()]); str = str.replace('%date', this.getDate()); ...