我用一个日期来请某个人上下周。
html基本如此:
<form method="post" action="">
<input type="text" id="beginDate" />
<input type="text" id="endDate" />
</form>
j现在就是:
<script type="text/javascript">
$(function () {
$("#beginDate").datepicker(
{ dateFormat: "dd-mm-yy",
onSelect: function () {
var mon = $(this).datepicker( getDate );
mon.setDate(mon.getDate() + 1 - (mon.getDay() || 7));
var sun = new Date(mon.getTime());
sun.setDate(sun.getDate() + 6);
$(this).val(mon);
$( #endDate ).val(sun);
}
});
});
</script>
著作,类型...... 在我的文本箱中设置了<条码>2011年第21号:00:00 GMT+0100和Sun Nov 27 2011 00:00:00 GMT+0100
。
I want them to be in a "dd-mm-yyyy" format, so just 21/11/2011
.
I tried things such as .formatDate
, but that does not seem to work.
我知道,我可以做些什么,例如<条码>.GetDay()+“/”+ mon.GetMonth()+“/”等条码>,但javascript必须具备某种适当的日期格式。