我从中下载了javascript和所需的css文件 http://trentrichardson.com/examples/timepicker/
我得到了日期和时间,但它是24小时格式,我希望它是一个12小时格式的上午/下午。
我试过了:
$('.emltdp-emltd-test').datetimepicker({
timeFormat: 'hh:mm tt',
});
但它不起作用。
答案 0 :(得分:0)
我认为您的代码没有任何问题,如果它与您发布的内容相匹配,我可以验证它应该是否有效。只需确保您的实际代码中没有任何拼写错误或大写错误。
$(function(){
$('.emltdp-emltd-test').datetimepicker({
timeFormat: 'hh:mm tt',
});
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/themes/smoothness/jquery-ui.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js"></script>
<script src="http://trentrichardson.com/examples/timepicker/jquery-ui-timepicker-addon.js"></script>
<link rel="stylesheet" href="http://trentrichardson.com/examples/timepicker/jquery-ui-timepicker-addon.css" />
<input class="emltdp-emltd-test" />