这是一个jsfiddle,在这里我已经包含了jquery 2和这个时间选择器库http://jonthornton.github.io/jquery-timepicker/jquery.timepicker.js
,输入id为startTime
,我在脚本中这样做:
<script type="text/javascript">
$('#startTime').timepicker();
</script>
问题是,当我点击输入文本时,什么也没有出现,尽管教程中说这足以触发时间选择器下拉菜单。
我错过了什么?
对于那些没有使用过这个库的人,这是它的链接http://jonthornton.github.io/jquery-timepicker/你可以从这里下载https://github.com/jonthornton/jquery-timepicker
需要包含jquery.timepicker.css
文件
您应该使用文档就绪处理程序。像
$(document).ready(function() {
$('#startTime').timepicker();
});
这里是工作JSFIDDLE:
你需要包含所有下面提到的文件插件的工作。你可能会漏掉一些。
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
bootstrap-datepicker.js
bootstrap-datepicker.css
jquery.timepicker.js
query.timepicker.css
JS:
$('#startTime').timepicker();
试试这个:
<script type="text/javascript">
$(document).ready(function () {
$('#startTime').timepicker({dateFormat: 'm/d/yy', maxDate: '@DateTime.Now.ToString("MM/dd/yyyy")' });
});
</script>