Skip to content

Instantly share code, notes, and snippets.

@PizzaLiu
Created May 31, 2013 07:49
Show Gist options
  • Save PizzaLiu/5683484 to your computer and use it in GitHub Desktop.
Save PizzaLiu/5683484 to your computer and use it in GitHub Desktop.
datepicker -- 22.05.2009
<script type="text/javascript" src="./static/js/ajaxfileupload.js"></script>
<link href="datepicker.css" rel="stylesheet">
<input name="outdate" id="outdate" type="text" />
jq('#indate').DatePicker({
mode:'single',
calendars:1,
format:'Y年m月d日',
starts:1,
date: current_date,
current: current_date,
position: 'bottom',
onChange: function(formated, dates){
jq('#indate').val(formated);
jq('#indate').DatePickerHide();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment