1. ホーム
  2. javascript

[解決済み] BootStrap : Uncaught TypeError: $(...).datetimepicker is not a function.

2022-02-16 08:04:37

質問

BootStrapを使い始めたばかりですが、次のような問題があります。 Uncaught TypeError: $(...).datetimepicker is not a function というエラーメッセージが表示されます。どなたか、このコードで何が足りなかったのか、教えていただけませんか?

それ以来、同様の質問を複数参照していますが、無駄です。

home_page.html

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Health Insurance</title>

<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.css">
<link rel="stylesheet" href="js/bootstrap-datepicker.min.css">
<link rel="stylesheet" href="css/bootstrap.css">

</head>

<body>
  <form role="form">

  <div class="form-group form-group-sm">
        <label class="col-sm-2 control-label" for="insuredName">Insured Name :</label>
            <div class="col-sm-3">
                <input class="form-control" type="text" id="insuredName" placeholder="Insured Name">
        </div>
    </div>


    <div class="form-group form-group-sm">
        <label class="col-sm-2 control-label" for="rel_PolicyHolder">Relation with Policy Holder :</label>
        <div class="col-sm-3">
            <input class="form-control" type="text" id="rel_PolicyHolder" placeholder="Relation with Policy Holder"> <br />
            <br />
        </div>
    </div>

    
<div class="container" >
<div class="col-sm-4" style="height:130px; align:right">
                            
            <div class='input-group date'>
                <input type='text' class="form-control" id='datetimepicker9' /> 
                    <span class="input-group-addon"> 
                            <span class="glyphicon glyphicon-calendar"></span>
                    </span>

            <script src="js/jquery-1.11.2.min.js"></script></script>
            <script src="js/bootstrap.min.js"></script>
            <script src="js/bootstrap-datepicker.min.js"></script>


    <script type="text/javascript">
            $(function () {
            $('#datetimepicker9').datetimepicker({
            viewMode: 'years'
            });
        });
      </script>
     </div>

     </div>
    </div>

 </form>

 </body>
</html>

すべてのファイルは WebContent フォルダを作成しましたが outside META-INF WEB-INF フォルダーに格納されます。

下のファイル css フォルダー

  • ブートストラップテーマ.css
  • ブートストラップ-テーマ.css.map
  • ブートストラップ-テーマ.min.css
  • bootstrap.css
  • bootstrap.css.map
  • bootstrap.min.css
  • enhanced.css
  • jquery-ui.css
  • ui.daterangepicker.css。

下のファイル fonts フォルダー

  • グリフィコンズ-ハーフリング-レギュラー.eot
  • glyphicons-halflings-regular.svg
  • glyphicons-halflings-regular.ttf
  • glyphicons-halflings-regular.woff
  • glyphicons-halflings-regular.woff2

下のファイル js フォルダー

  • bootstrap-datepicker.min.css(ブートストラップ・デートピッカー・ミニ)。
  • bootstrap-datepicker.min.js
  • ブートストラップ.js
  • bootstrap.min.js
  • date.js
  • エンハンスド.min.js
  • fileinput.jquery.js
  • jquery-1.11.2.min.js
  • jquery-1.8.3.min.js
  • jquery-1.9.0.min.js
  • jquery-ui.js
  • npm.js

エラーメッセージ

Uncaught TypeError: $(...).datetimepicker is not a function

(anonymous function) @ home_page.html:82

m.Callbacks.j @ jquery-1.11.2.min.js:2

m.Callbacks.k.fireWith @ jquery-1.11.2.min.js:2

m.extend.ready @ jquery-1.11.2.min.js:2

J @ jquery-1.11.2.min.js:2

何かご指導いただければ幸いです。

解決方法は?

を使用しています。 datetimepicker であるべきところを datepicker . のように ドキュメント . これを試せばうまくいくはずです。

<script type="text/javascript">
  $(function () {
    $('#datetimepicker9').datepicker({
      viewMode: 'years'
    });
  });
 </script>