我希望有一个内联日期选择器,但有一年/月下降。使用JQuery Datepicker可以吗? http://jqueryui.com/datepicker/
答案 0 :(得分:0)
用于内联
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Display inline</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() {
$( "#datepicker" ).datepicker();
});
</script>
</head>
<body>
Date: <div id="datepicker"></div>
</body>
</html>
以及年月例here
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
});
并合并他们的选项
答案 1 :(得分:0)
是的,它可能。
你可以这样试试。
$(function() {
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
});
});