jQuery Lightbox 插件无法在我的页面上运行
我在这个问题上花了几个小时。这是我的代码。
<div id="contentBox">
<p>Some text here </p>
<div id="photoAlbumOne">
<ul id="photoAlbum">
<li id="fig1"><a href="../images/image1.png"><img src="../images/thumb1.png"></a></li>
<li id="fig2"><a href="../images/image2.png"><img src="../images/thumb2.png"></a></li>
</ul>
</div>
</div>
这是脚本。
<script type="text/javascript">
$(function() {
$('#photoAlbumOne a').lightBox();
});
</script>
我已经给出了 jQuery 和插件的链接。怎么了?为什么它不起作用?我很感激你的帮助。
I have spent hours on this problem. Here is my code.
<div id="contentBox">
<p>Some text here </p>
<div id="photoAlbumOne">
<ul id="photoAlbum">
<li id="fig1"><a href="../images/image1.png"><img src="../images/thumb1.png"></a></li>
<li id="fig2"><a href="../images/image2.png"><img src="../images/thumb2.png"></a></li>
</ul>
</div>
</div>
Here is script.
<script type="text/javascript">
$(function() {
$('#photoAlbumOne a').lightBox();
});
</script>
I have given the link to both jQuery and and plugins. What's wrong? Why is it not working? I appreciate your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您能确认在灯箱 CSS 中使用了这个“#photoAlbumOne”吗?
could you please confirm used this "#photoAlbumOne" in light box css.