我已经使用shaowboax网站上未更改的使用代码将阴影框插入到页面加载的网站中,但似乎加载的是通常位于弹出窗口后面的暗灰色背景。
这是我正在使用的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>
标签内。有没有人知道我可能做错了什么?