我正在使用 colorbox 插件 ( http://www.jacklmoore.com/colorbox/ ) 制作一种画廊,但我无法让它工作。
我从网页上复制了演示代码(我对其进行了修改以适合我的链接)
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="colorbox.css" />
<script src="jquery.js"></script>
<script src="jquery.colorbox.min.js"></script>
</head>
<body>
<a class='gallery' href='image.jpg'>Photo_1</a>
<script>
alert('colorbox is about to open')
$("a.gallery").colorbox();
</script>
</body>
</html>
所以,很明显我做错了什么,我只是不知道是什么。我将 jquery、colorbox 和 colorbox.css 文件包含在我的 html 目录中。如果你能帮助我,在此先感谢!