jquery datepicker从onSelect事件中获取dateText

时间:2011-02-09 07:35:11

标签: jquery asp.net asp.net-mvc-2

希望将datepicker中的dateText从onSelect事件中取出,在其他一些函数中:

示例:

在onSelect事件中:

dateText is equal to 08.02.2011

$('#datetime')。datepicker(“getDate”)返回:

Tue Feb 08 2011 00:00:00 GMT+0300 (Russia Standard Time)

因此无法正确进入我的控制器

1 个答案:

答案 0 :(得分:0)

Datepicker getDate方法返回需要转换它的Date对象(Date object reference

function convert(date) {
   return date.getDate() + "."+ (date.getMonth()+1) + "." + date.getFullYear();
}

您也可以尝试覆盖Date对象的toString方法,但我不知道它如何与DatePicker插件一起使用。

Date.prototype.toString = function() {
   return this.getDate() + "."+ (this.getMonth()+1) + "." + this.getFullYear();
}