导航栏不可点击,引导程序有问题

时间:2020-04-16 13:32:06

标签: javascript jquery css bootstrap-4

我的导航栏有一个问题,仅当我使用“ $(document).ready(function(){”)时,它才会出现错误。 问题在于无法单击导航栏上的切换按钮。 如果我退出“ $(document).ready(function(){”,则切换按钮正常工作...

我发现很多人都在谈论这个问题,但是没有一个解决方案对我有用:(

出现问题的页面:

<?php
require_once("../../include/js/ShowNotif.php");
$title_page = "Liste des namespaces - Name";
require_once("../../include/head.php");
?>

  <!-- Main content -->
  <div class="main-content" id="panel">
..
..
<div id="results"></div>
</div>
<?php
  require_once("../../include/js/js.php");
?>

<script>
$(document).ready(function(){
              $.ajax({
                url : "../../ajax/getnamespacesbdd.php",
                type : 'GET',
                success : function(data, statut){
                  $('#results').html(data);
                },
                error : function(resultat, statut, erreur){
                  ShowMessageNotification('error', 'Aïe ! C\'est une erreur de GET ! L\'API est down ?', 4000, 'top-end');
                }
              });
            })
</script>
</body>
</html>

还有head.php

  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700">
  <!-- Icons -->
  <link rel="stylesheet" href="../../assets/vendor/nucleo/css/nucleo.css" type="text/css">
  <link rel="stylesheet" href="../../assets/vendor/@fortawesome/fontawesome-free/css/all.min.css" type="text/css">

  <link rel="stylesheet" href="../../assets/vendor/datatables.net-bs4/css/dataTables.bootstrap4.min.css">
  <link rel="stylesheet" href="../../assets/vendor/datatables.net-buttons-bs4/css/buttons.bootstrap4.min.css">
  <link rel="stylesheet" href="../../assets/vendor/datatables.net-select-bs4/css/select.bootstrap4.min.css">
  <!-- Page plugins -->
  <!-- Argon CSS -->
  <link rel="stylesheet" href="../../assets/css/argon.css?v=1.2.0" type="text/css">
</head>

<body>
  <script src="../../assets/vendor/jquery/dist/jquery.min.js"></script>
...
...

开发工具没有错误。 谢谢!

0 个答案:

没有答案