我想在我的代码中使用bootstrap time picker。我已经为此创建了演示页面,但它无法正常工作。这是我的代码:
<!Doctype html>
<html>
<head>
<link href="resources/css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="resources/css/bootstrap-timepicker.css">
</head>
<body>
<div class="col-md-2 col-md-offset-4">
<input name="time" class="time form-control" >
</div>
<script src="resources/js/jquery-1.9.1.min.js"></script>
<script src="resources/js/bootstrap-timepicker.js"></script>
<script>
$(document).ready(function(){
$('.time').timepicker();
});
</script>
</body>
</html>
我的代码有什么问题?
答案 0 :(得分:0)
Datepicker似乎不再是引导程序可交付成果(http://getbootstrap.com/javascript/)的一部分。虽然有使用以前版本的bootstrap(http://tarruda.github.io/bootstrap-datetimepicker/)的工作日期选择器示例,但我建议使用基于bootstrap 3(https://github.com/Eonasdan/bootstrap-datetimepicker)的开源社区中的日期选择器: - )