任何机构都可以告诉我们如何使用Jquery日历日期时间选择器。
答案 0 :(得分:2)
答案 1 :(得分:2)
您执行以下操作:
您可以在此处阅读文档:http://jqueryui.com/demos/datepicker/
<input id="datepicker" type="text">
<script type="text/javascript">
$(function() {
$("#datepicker").datepicker();
});
</script>
答案 2 :(得分:1)
对于默认选项,它只是
$(function() { // function to execute when DOM is ready
$('#input').datepicker(); // run datepicker on jQuery object
});
你有
的地方<input type="text" id="input" />
在您的标记中。您需要按以下顺序引用脚本
更高级的示例 check out this demo 。如果您想查看其背后的代码,请将 / edit 添加到网址。
答案 3 :(得分:1)
您也可以考虑使用原生HTML5 datepicker。用户Modernizr决定是否使用浏览器本机。
答案 4 :(得分:0)
如果HTML5 datepicker不可用,那么使用HTML5并回退到jQuery UI呢?
<script type="text/javascript">
$(document).ready(function () {
if (!Modernizr.inputtypes.date){
// if no native support, use a datepicker script
$(':input[type=datetime]').datepicker();
}
});
</script>
答案 5 :(得分:0)
试试这个
$( "#dateTime" ).datetimepicker({
dateFormat: 'yy-mm-dd',
changeMonth: true,
changeYear: true,
});