如何使用jquery获取当前日期?

时间:2011-01-17 05:01:40

标签: jquery date jquery-plugins

我正在使用日历插件,我想将当前日期填充到文本字段中。我怎么能用jquery做到这一点?

2 个答案:

答案 0 :(得分:12)

您可以获得current date in JavaScript

var now = new Date();

如果你使用jQuery DatePicker,你可以在任何文本字段上应用它:

$('input.youTextFieldClass').datepicker({ dateFormat: 'mm/dd/yy', 
                                     changeMonth: true,
                                     changeYear: true,
                                     yearRange: '-70:+10',
                                     constrainInput: false,
                                     duration: '',
                                     gotoCurrent: true});

If you want to set current date in textfields as page load:

$("input.youTextFieldClass").datepicker('setDate', new Date());

答案 1 :(得分:2)

您可以找到示例here

<input type="text" id="datepicker">
$( "#datepicker" ).datepicker({dateFormat:"dd M yy"}).datepicker("setDate",new Date());