我正在学习javascript,到目前为止我已经掌握了它。无论如何,我建立了一个具有日期输入字段的页面,并且我需要一个小日历来弹出以从中选择日期。jquery UI datepicker ( http://jqueryui.com/datepicker ) 看起来非常好,唯一的问题是我对 jquery 一无所知。我可以复制并粘贴代码,但除此之外,我不太了解。我需要日历来选择日期范围(例如在http://jqueryui.com/datepicker/#date-range)。我可以使用那里的源代码将其放入,但问题是我还需要它采用 ISO 8601 格式(如 yyyy-mm-dd)。该网站说要做到这一点,我使用以下代码:
$( ".selector" ).datepicker({ dateFormat: "yy-mm-dd" });
好的,太好了,我把它放在哪里?这是来自网站的源代码,我将它放在哪里?
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Select a Date Range</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#from" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#to" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#to" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#from" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
</script>
</head>
<body>
<label for="from">From</label>
<input type="text" id="from" name="from" />
<label for="to">to</label>
<input type="text" id="to" name="to" />
</body>
</html>