我正在使用日历插件,我想将当前日期填充到文本字段中。我怎么能用jquery做到这一点?
答案 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());