Ошибки jQuery MaterializeCSS - PullRequest
0 голосов
/ 15 мая 2018

Я работаю с материализовать CSS рамки.Внезапно я получил кучу ошибок и больше не могу отображать модалы, выборки, параллакс на своем веб-сайте.

Я использую функции, включенные в документацию.

Этоошибки:

jquery-3.2.1.min.js:2 jQuery.Deferred exception: $(...).parallax is not a 
     function TypeError: $(...).parallax is not a function
      at HTMLDocument.<anonymous> (http://localhost:8000/home:623:22)
     at j (https://code.jquery.com/jquery-3.2.1.min.js:2:29999)
     at k (https://code.jquery.com/jquery-3.2.1.min.js:2:30313) undefined
      r.Deferred.exceptionHook @ jquery-3.2.1.min.js:2
      jquery-3.2.1.min.js:2 jQuery.Deferred exception: 
 $(...).material_select is not a function TypeError: $(...).material_select 
 is not a function
at HTMLDocument.<anonymous> (http://localhost:8000/home:632:17)
at j (https://code.jquery.com/jquery-3.2.1.min.js:2:29999)
at k (https://code.jquery.com/jquery-3.2.1.min.js:2:30313) undefined
 r.Deferred.exceptionHook @ jquery-3.2.1.min.js:2
  jquery-3.2.1.min.js:2 jQuery.Deferred exception: $(...).collapsible is not 
  a function TypeError: $(...).collapsible is not a function
at HTMLDocument.<anonymous> (http://localhost:8000/home:637:23)
at j (https://code.jquery.com/jquery-3.2.1.min.js:2:29999)
at k (https://code.jquery.com/jquery-3.2.1.min.js:2:30313) undefined
 r.Deferred.exceptionHook @ jquery-3.2.1.min.js:2
 jquery-3.2.1.min.js:2 Uncaught TypeError: $(...).parallax is not a function
at HTMLDocument.<anonymous> (home:623)
at j (jquery-3.2.1.min.js:2)
at k (jquery-3.2.1.min.js:2)
jquery-3.2.1.min.js:2 Uncaught TypeError: $(...).material_select is not a 
function
at HTMLDocument.<anonymous> (home:632)
at j (jquery-3.2.1.min.js:2)
at k (jquery-3.2.1.min.js:2)
 jquery-3.2.1.min.js:2 Uncaught TypeError: $(...).collapsible is not a 
 function
at HTMLDocument.<anonymous> (home:637)
at j (jquery-3.2.1.min.js:2)
at k (jquery-3.2.1.min.js:2)

А это мой JS-файл:

     <!--Import jQuery before materialize.js-->
      <script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
   <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
   <script src="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/7.14.0/sweetalert2.all.min.js"></script>





     <script>

                $(document).ready(function(){
              $('.parallax').parallax();
            });


            $('.carousel.carousel-slider').carousel({fullWidth: true});



                 $(document).ready(function() {
            $('select').material_select();
          });


          $(document).ready(function(){
            $('.collapsible').collapsible();
          });


         // Or with jQuery

         $(document).ready(function(){
            $('.modal').modal();
          });

       </script>

Это скриншот:

1 Ответ

0 голосов
/ 15 мая 2018

Вы подключены к Интернету? Или, возможно, неправильные адреса cdn

...