我在客户网站 cloverco.com 的主页上添加了一个颜色框,但它在大约一年后停止工作。我维护这个网站,所以我知道他们没有进去捣乱任何东西。
我使用的代码如下:
头
<!-- Start Coupon Colorbox -->
<link media="screen" rel="stylesheet" href="http://www.cloverco.com/storage/support/colorbox/colorbox.css" />
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="http://www.cloverco.com/storage/support/colorbox/jquery.colorbox-min.js" type="text/javascript"></script>
<!-- End Coupon Colorbox -->
主页(在结束正文标签之前):
<!-- Start Coupon Colorbox -->
<script type="text/javascript">
$(function()
{
$(window).bind('load',
function(e)
{
window.setTimeout(function()
{
$.colorbox({opacity:0.3, href:"http://www.cloverco.com/storage/support/colorbox/offer.html"});
}, /*timeout->*/ 2000);
});
});
</script>
<!-- End Coupon Colorbox -->
上面的代码正是我一开始使用的,此后没有对其进行任何编辑。当我最初添加它时它工作得很好,但现在什么也没做。
任何帮助或指导将不胜感激!