このエラーのせいで、もう一日頭が痛いです。
The jQuery object is actually just the init constructor 'enhanced'
return new jQuery.fn.init( selector, context, rootjQuery );
} has no method 'curCSS'
私のhtmlは:
<input class="field2" type="text" name="time" placeholder="Time" value ="<?php echo $this- >input->post('time'); ?>" id = "timepicker"/></div>
私は現在コードイグナイターを使用しており、日付ピッカーも使用しています。含まれているjsライブラリに競合があると思いますが、それでもデバッグできません。
編集:これらは含まれているjsです
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript"src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<script type="text/javascript" src="<?php echo base_url() ?>js_front/jquery-1.8.3.js"></script>
<script type="text/javascript" src="<?php echo base_url() ?>js_front/ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="<?php echo base_url() ?>js_front/ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="<?php echo base_url() ?>js_front/ui/jquery.ui.datepicker.js"></script>
ここでは、入力タグ タイプ テキストへのタイムピッカーの割り当てを示します。
$(function() {
$( "#timepicker" ).timepicker();
});