gpt4 book ai didi

javascript - 获取 `Galleria is not defined` 异常

转载 作者:行者123 更新时间:2023-11-29 22:25:41 30 4
gpt4 key购买 nike

我以前没用过那个插件。我现在得到的是:

包含的脚本

<script src="@Url.Content("~/Content/Scripts/jquery-1.7.1.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Content/Scripts/themes/classic/galleria.classic.min.js")" type="text/javascript"></script>

我在 head 标签内引用了 galleria 主题。我已经使用 Chrome web developer tools 检查了 JQueryGalleria 脚本的可见性(并简单地调用 $("body").text("jQuery works"); 以确保我自己 Jquery 有效)。

<script type="text/javascript">
// $("body").text("jQuery works");
$(document).ready(function () {
$("#gallery").galleria({
width: 750,
height: 300,
clicknext: true
});
} // function() {
); // $(document).ready(
</script>

CSHTML

<fieldset>
@* other things*@
@if(Model.AttachedInformation.Count > 0)
{
<div id="gallery">
@foreach(var path in Model.AttachedInformation)
{
<img src="@path" alt="" width="50" height="50" />
}
</div>
}
</fieldset>

现在有两点不清楚:我可以保留 div 吗?它会被 gelleria 识别> 在 fieldset 中; Chrome 给我的消息是 Galleria is not defined

需要建议!谢谢!

编辑

enter image description here

最佳答案

您只引用了 Galleria 主题。您还需要引用(并下载,如果您还没有的话)Galleria 核心。 http://galleria.io/download/

确保在主题脚本之前引用 Galleria。

关于javascript - 获取 `Galleria is not defined` 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9584964/

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