未捕获的类型错误:数据[选项]不是函数 bootstrap.js:1215

2023-12-21

我使用 bootstrap lightbox 时收到以下错误here http://ashleydw.github.io/lightbox/:

Uncaught TypeError: data[option] is not a function bootstrap.js:1215

我已经复制了所有文件目录并且没有更改任何参数。

这是我的代码:

JS 链接:

 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
 <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
 <script src="/js/bootstrap.js"></script>
 <script src="/js/bootstrap-lightbox.js"></script>

 <link rel="stylesheet" href="/css/bootstrap.css">
 <link rel="stylesheet" href="/css/bootstrap-theme.css">
 <link rel="stylesheet" href="/css/bootstrap-social.css">
 <link rel="stylesheet" href="/css/bootstrap-lightbox.css">
 <link rel="stylesheet" href="/css/font-awesome.css">
 <link rel="stylesheet" href="/css/bootstrap-override.css">
 <link rel="stylesheet" href="http://fonts.example.com/custom-font.css">

Gallery:

<div class="container">
  <div class="row">
    <div class="col-lg-12">
      <h1 class="page-header">Portfolio</h1>
    </div><?php
         $images = glob($_SERVER['DOCUMENT_ROOT'].'/img/gallery/*.{jpg,png,gif}', GLOB_BRACE);
         $imageCount = count($images);
          if($imageCount == 0) {
             echo "There are currently no images in this gallery.";
             }
             else if($imageCount !== 0) {
             $counter = 1;
         foreach($images as $image) {
          echo "<div class='col-lg-3 col-md-4 col-xs-6 thumb'> \n\r";
         echo "<a data-toggle='lightbox' data-title='A random title' data-footer='A custom footer text' href='http://img.example.com/gallery/".basename($image)."' class='thumbnail'><img src='http://img.example.com/gallery/thumb.php?src=" . basename($image) . "&w=400&h=300&a=c' alt='Jolly Roger PCS Gallery Image' title='One Call Does It All' class='img-responsive'></a> \n\r";
         echo "</div> \n\r \n\r \r\n";
         }
       }
    ?>
  </div>
</div>

以及图像的图库脚本的输出:

<div class='col-lg-3 col-md-4 col-xs-6 thumb'> 

<a data-toggle='lightbox' data-title='A random title' data-footer='A custom footer text' href='http://img.example.com/gallery/10177464_1495074060751956_373648277891171115_n.jpg' class='thumbnail'><img src='http://img.example.com/gallery/thumb.php?src=10177464_1495074060751956_373648277891171115_n.jpg&w=400&h=300&a=c' alt='Jolly Roger PCS Gallery Image' title='One Call Does It All' class='img-responsive'></a> 

</div> 

最后是页面末尾的 JS:

<script type="text/javascript">
$(document).on('click', '[data-toggle="lightbox"]', function(event) {
    event.preventDefault();
    $(this).ekkoLightbox();
});
        </script>

该脚本在一定程度上正在发挥作用。当我单击缩略图时,灯箱会触发并出现加载图像,但图标的全尺寸图像永远不会出现。

数据类型似乎都位于正确的位置,因此我不知道是什么导致了此错误。我尝试搜索但没有得到任何结果。


错误背后的原因是 bootstrap 和 bootstrap lightbox 插件版本之间不兼容。

检查工作演示here http://codepen.io/jpI/pen/ZpaxQx:

$(document).on('click', '[data-toggle="lightbox"]', function(event) {
    event.preventDefault();
    $(this).ekkoLightbox();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a href="https://unsplash.it/1200/768.jpg?image=251" data-toggle="lightbox">
    <img src="https://unsplash.it/600.jpg?image=251" class="img-fluid">
</a>

如果您使用的是 bootstrap 版本 3.x.x,则包含以下资源:

如果您使用的是 bootstrap 版本 4.x.x,则包含以下资源:

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

未捕获的类型错误:数据[选项]不是函数 bootstrap.js:1215 的相关文章