我想要一个内联日期选择器,但有一个年/月下拉菜单。使用 JQuery Datepicker 可以吗?http://jqueryui.com/datepicker/
问问题
371 次
2 回答
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>
和这里的年月示例
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
});
并合并他们的选择
于 2013-10-01T11:29:15.437 回答
0
是的,有可能。
你可以试试这个方法。
$(function() {
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
});
});
于 2013-10-01T11:55:22.430 回答