gpt4 book ai didi

javascript - 未捕获的类型错误 : data[option] is not a function bootstrap. js:1215

转载 作者:行者123 更新时间:2023-11-30 08:29:51 34 4
gpt4 key购买 nike

我使用 here 中的 bootstrap lightbox 时收到以下错误:

未捕获类型错误:数据[选项]不是函数 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">

图库:

<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 :

$(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,则包含以下资源:

enter image description here

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

enter image description here

关于javascript - 未捕获的类型错误 : data[option] is not a function bootstrap. js:1215,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39735074/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com