fancybox-d.onCleanup不是函数


136

这让我发疯。我创建了一个简单的测试页。

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../admin/UI/js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="admin/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    $("#foo").fancybox({
        'autoDimensions':   false,
        'width'         :   '750',
        'height'        :   '90%',
        'transitionIn'  :   'elastic',
        'transitionOut' :   'elastic',
        'speedIn'       :   600, 
        'speedOut'      :   200, 
        'overlayShow'   :   true,
        'hideOnOverlayClick' : false
    });
});
</script>
<title>Untitled Document</title>
</head>

<body>
<a href="foo.php" id="foo">test</a>
</body>
</html>

当点击链接我得到`d.onCleanup is not a function!有谁知道这个错误来自哪里!

或解压后的版本:

currentOpts.onCleanup is not a function on fancybox/jquery.fancybox-1.3.4.js Line 324

Answers:


309

您忘记添加fancybox的CSS。一旦包含它,一切都应该正常工作。


3
谢谢。对铬这看起来像:未捕获的类型错误:对象#<对象>没有方法“formatMatch”未捕获的类型错误:对象#<对象>没有方法“onCleanup”
沃尔多

19
出于好奇,这是为什么?如果将css文件全部合并为一个,这似乎不起作用……
SeanJA 2011年

3
我可以确认Drupal的CSS组合/带宽优化性能功能将导致发生此问题。Methinks Fancybox需要更好的方法来测试资产的存在。
jschrab 2011年

2
@jordi,我的上帝,这个答案使你变得富有!感谢您的帮助
克里斯蒂安(Kristian)2012年

1
由于缺少带有JS脚本的CSS,我已经遇到了类似的错误,但是没想到这会成为问题……谢谢!
FelipeAls
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.