我尝试实现Time和Datepicker。如果我这样做:
<script>
$(function() {
/*date_obj = new Date();
date_obj_hours = date_obj.getHours();
date_obj_mins = date_obj.getMinutes();
date_obj_time = " '"+date_obj_hours+":"+date_obj_mins+"'";*/
$.datepicker.setDefaults( $.datepicker.regional[ "no" ] );
$( "#datepicker" ).datepicker({dateFormat: $.datepicker.W3C}); // + date_obj_time
<!--$('#datepicker').datetimepicker();-->
});
</script>
Datepicker有效,但如果我这样做:
<script>
$(function() {
/*date_obj = new Date();
date_obj_hours = date_obj.getHours();
date_obj_mins = date_obj.getMinutes();
date_obj_time = " '"+date_obj_hours+":"+date_obj_mins+"'";*/
<!--$.datepicker.setDefaults( $.datepicker.regional[ "no" ] );-->
<!--$( "#datepicker" ).datepicker({dateFormat: $.datepicker.W3C}); // +date_obj_time-->
$('#datepicker').datetimepicker();
});
</script>
单击时,文本字段中没有显示任何内容。我怎样才能做到这一点?感谢
为了记录,我遵循了这个:http://trentrichardson.com/examples/timepicker/
答案 0 :(得分:1)
jQuery to php date time UI calendar
<link rel="stylesheet" media="all" type="text/css" href="css/ui-lightness/jquery-ui-1.8.16.custom.css" />
<link rel="stylesheet" media="all" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.16.custom.min.js"></script>
<input type="text" name="example1" id="example1" value="" />
<input type="text" name="example1" id="example2" value="" />
<script>
$('#example1').datetimepicker();
$('#example2').datetimepicker();
</script>
您可以从jquery网站获取所有css
这是我的示例zip文件 http://www.woofiles.com/dl-294002-m4UvKkLO-testdate.rar