我已经使用来自 shaowboax 网站的未更改使用代码在页面加载时将 Shadow box 插入网站,但它似乎加载的只是通常位于弹出窗口后面的暗黑色背景。
这是我正在使用的 JS 和引用:
<link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css">
<script type="text/javascript" src="shadowbox/shadowbox.js"></script>
<script type="text/javascript">
Shadowbox.init({
// let's skip the automatic setup because we don't have any
// properly configured link elements on the page
skipSetup: true
});
window.onload = function() {
// open a welcome message as soon as the window loads
Shadowbox.open({
content: '<div id="welcome-msg">Test</div>',
player: "html",
title: "Welcome",
height: 552,
width: 514
});
};
</script>
我已经尝试过使用不同的播放器,更改弹出窗口中的内容,加载旧版本的 Showbox 并更改脚本和样式表的位置。我正在使用 Shadowbox 的 Jquery 下载版本,脚本标签放置在<body>
标签内。有谁知道我可能做错了什么?