目前我使用DatePicker(view-source:http://jqueryui.com/demos/datepicker/default.html),但我在添加Timepicker插件時遇到困難(https:// github.com/trentrichardson/jQuery-Timepicker-Addon),如何正確使用插件?帶DatePicker的Timepicker插件
謝謝:)
目前我使用DatePicker(view-source:http://jqueryui.com/demos/datepicker/default.html),但我在添加Timepicker插件時遇到困難(https:// github.com/trentrichardson/jQuery-Timepicker-Addon),如何正確使用插件?帶DatePicker的Timepicker插件
謝謝:)
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<!-- core, slider, datepicker -->
<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" src="js/timepicker.js"></script>
<script type="text/javascript">
$(function() {
$('#datetime').datetimepicker({
showSecond: true,
timeFormat: 'hh:mm:ss',
stepHour: 2,
stepMinute: 10,
stepSecond: 10
...
});
});
</script>
<input type="text" name="datetime" id="datetime" value="">
我已經閱讀過那部分,但是如何在datepicker.js中添加插件.js? – ErHunt 2012-04-12 04:06:22
否? – jonathanbell 2012-04-12 04:30:15
其包含在這裏:js/jquery-ui-1.7.2.custom.min.js – undefined 2012-04-12 04:38:49
你將不得不比這更具體的,對於初學者。你有什麼樣的問題? – 2012-04-12 03:51:02
我已經添加了CSS,但有問題找出正確的方法將兩個(datepicker&timePicker).js集成在一起。 – ErHunt 2012-04-12 03:52:58
將javascript和css文件包含到您的文檔中。 – rjmcb 2012-04-12 04:38:56