Datepicker onSelect不起作用

我有下面的function似乎不起作用,请做一点帮助请。 该函数基本上将30天添加到使用datepicker选择的日期。

$('#datepicker').datepicker({ onSelect: function(dateText, inst) { var date = new Date(dateText); date.setDate(date.getDate() + 30); date.format('mm/dd/yy'); alert(date) } }); 

我不知道我哪里出错了。 选择日期时,如果有帮助,则会向地址栏URL添加空锚。

谢谢。

问题是date.format('mm/dd/yyy')正在date.format('mm/dd/yyy')

有关如何在js中格式化日期的示例:

http://www.webdevelopersnotes.com/tips/html/10_ways_to_format_time_and_date_using_javascript.php3