解决jquery的datepicker的本地化以及Today问题

1、本地化 可以直接加载文件,也可以直接在script后面加入如下语句

jQuery(function ($) { 
$.datepicker.regional['zh-CN'] = { 
closeText: '关闭', 
prevText: '<上月', 
nextText: '下月>', 
currentText: '今天', 
monthNames: ['一月', '二月', '三月', '四月', '五月', '六月', 
'七月', '八月', '九月', '十月', '十一月', '十二月'], 
monthNamesShort: ['一', '二', '三', '四', '五', '六', 
'七', '八', '九', '十', '十一', '十二'], 
dayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 
dayNamesShort: ['周日', '周一', '周二', '周三', '周四', '周五', '周六'], 
dayNamesMin: ['日', '一', '二', '三', '四', '五', '六'], 
weekHeader: '周', 
dateFormat: 'yy-mm-dd', 
firstDay: 1, 
isRTL: false, 
showMonthAfterYear: true, 
yearSuffix: '年' 
}; 
$.datepicker.setDefaults($.datepicker.regional['zh-CN']); 
}); 



2:默认情况下,在该控件点击“today”按钮是直接调到当前日期的附近,如果需要选择当前日期,还需要我们自己手动点击,有的时候我们需要单击Today (今天) 直接在input 中显示日期,而不是跳转到今天的地方而需要用户再次点击日期修改方法很简单,在script中添加这段代码:

				jQuery.datepicker._gotoToday = function (id) { 
					var target =jQuery(id); 
					var inst = this._getInst(target[0]); 
					if (this._get(inst, 'gotoCurrent') && inst.currentDay) { 
					inst.selectedDay = inst.currentDay; 
					inst.drawMonth = inst.selectedMonth = inst.currentMonth; 
					inst.drawYear = inst.selectedYear = inst.currentYear; 
					} 
					else { 
					var date = new Date(); 
					inst.selectedDay = date.getDate(); 
					inst.drawMonth = inst.selectedMonth = date.getMonth(); 
					inst.drawYear = inst.selectedYear = date.getFullYear(); 
					this._setDateDatepicker(target, date); 
					this._selectDate(id, this._getDateDatepicker(target)); 
					} 
					this._notifyChange(inst); 
					this._adjustDate(target); 
					} 

现在点击“today”按钮就可以自动在输入框中写入当前日期了。

$.datepicker._gotoToday = function (id) { 
var target = $(id); 
var inst = this._getInst(target[0]); 
if (this._get(inst, 'gotoCurrent') && inst.currentDay) { 
inst.selectedDay = inst.currentDay; 
inst.drawMonth = inst.selectedMonth = inst.currentMonth; 
inst.drawYear = inst.selectedYear = inst.currentYear; 
} 
else { 
var date = new Date(); 
inst.selectedDay = date.getDate(); 
inst.drawMonth = inst.selectedMonth = date.getMonth(); 
inst.drawYear = inst.selectedYear = date.getFullYear(); 
this._setDateDatepicker(target, date); 
this._selectDate(id, this._getDateDatepicker(target)); 
} 
this._notifyChange(inst); 
this._adjustDate(target); 
} 





转自:

http://www.jb51.net/article/30372.htm 


http://www.jb51.net/article/30372.htm

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值