- 浏览: 1998 次
- 性别:
- 来自: ...
最新评论
文章列表
事件对象:
/**
* POJO
* @author lenovoe
*
*/
public class ValueEvent {
private long value;
public long getValue()
{
return value;
}
public void setValue(final long value)
{
this.value = value;
}
public final static EventFactory<ValueEvent> EVENT_FACT ...
//日期格式化
Date.prototype.format = function(format) {
var o = {
"M+" : this.getMonth()+1, //月
"d+" : this.getDate(), //天
"h+" : this.getHours(), //小时
"m+" : this.getMinutes(), //分钟
"s+" : this.getSeconds(), //秒
"q ...