インライン日付ピッカーが必要ですが、年/月のドロップダウンがあります。JQuery Datepicker を使用してそれは可能ですか? http://jqueryui.com/datepicker/
質問する
371 次
2 に答える
0
はい、可能です。
この方法で試すことができます。
$(function() {
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
});
});
于 2013-10-01T11:55:22.430 に答える
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 に答える