トレント・リチャードソンのタイムピッカーを使用しているときに、エラーコンソールから発生するこれらのエラーの意味を知っている人はいますか?私は何をする必要がありますか?
$.timepickerは未定義です
jsfileのこの行:$t.datepicker($.timepicker._newInst($t, o)._defaults);
$.datepickerは未定義です
jsfileのこの行:$.datepicker._base_selectDate = $.datepicker._selectDate;
トレント・リチャードソンのjsfile:http ://trentrichardson.com/examples/timepicker/js/jquery-ui-timepicker-addon.js
私のjsfileはリンクされています:
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<script type="text/javascript" src="jquery/jquery-1.7.min.js"></script>
<title>Prepare Questions and Answers</title>
<link rel="stylesheet" type="text/css" href="jquery/ui-lightness/jquery-ui-timepicker-addon.css"/>
<script type="text/javascript" src="jquery/jquery-ui-timepicker-addon.js"></script>
jqueryコード:
$(function() {
$('#answerdurationpicker').timepicker({
timeFormat:'hh mm ss',
hourGrid: 4,
minuteGrid: 10,
secondGrid: 10,
showOn: 'button',
buttonImage: "Images/clock.gif",
buttonImageOnly: true
});
});