⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dates.js

📁 这是一个ajax的例子大家好好的看看就是一个鱼眼的效果
💻 JS
字号:
if(!dojo._hasResource["dojox.dtl.filter.dates"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.dojo._hasResource["dojox.dtl.filter.dates"] = true;dojo.provide("dojox.dtl.filter.dates");dojo.require("dojox.dtl.utils.date");(function(){	var ddfd = dojox.dtl.filter.dates;	dojo.mixin(ddfd, {		_toDate: function(value){			if(value instanceof Date){				return value;			}			value = new Date(value);			if(value.getTime() == new Date(0).getTime()){				return "";			}			return value;		},		date: function(value, arg){			// summary: Formats a date according to the given format			value = ddfd._toDate(value);			if(!value) return "";			arg = arg || "N j, Y";			return dojox.dtl.utils.date.format(value, arg);		},		time: function(value, arg){			// summary: Formats a time according to the given format			value = ddfd._toDate(value);			if(!value) return "";			arg = arg || "P";			return dojox.dtl.utils.date.format(value, arg);		},		timesince: function(value, arg){			// summary: Formats a date as the time since that date (i.e. "4 days, 6 hours")			value = ddfd._toDate(value);			if(!value) return "";			var timesince = dojox.dtl.utils.date.timesince;			if(arg) return timesince(arg, value);			return timesince(value);		},		timeuntil: function(value, arg){			// summary: Formats a date as the time until that date (i.e. "4 days, 6 hours")			value = ddfd._toDate(value);			if(!value) return "";			var timesince = dojox.dtl.utils.date.timesince;			if(arg) return timesince(arg, value);			return timesince(new Date(), value);		}	});})();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -