fancybox - d.onCleanup non è una funzione


136

questo mi sta facendo impazzire. Iv'e ha creato una semplice pagina di prova ..

    <!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>

quando faccio clic sul link ottengo `d.onCleanup is not a function!!! qualcuno sa da dove proviene questo errore !!

o sulla versione non compressa:

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

Risposte:


309

Hai dimenticato di aggiungere il CSS di fancybox. Una volta incluso, tutto dovrebbe funzionare bene.


3
Grazie. Su Chrome sembrava: Uncaught TypeError: Object # <an Object> non ha metodo 'formatMatch' Uncaught TypeError: Object # <an Object> non ha metodo 'onCleanup'
waldo,

19
Per curiosità, perché? Non sembra funzionare se i file CSS sono tutti combinati in uno dei due ...
SeanJA

3
Posso confermare che il CSS che combina / ottimizza la larghezza di banda ottimizzando la funzionalità Performance causerà questo problema. Pensa che Fancybox abbia bisogno di un modo migliore per testare l'esistenza di risorse.
jschrab,

2
@jordi, mio ​​dio, questa risposta ti sta arricchendo! grazie per l'aiuto
Kristian

1
Avevo già bug simili a causa della mancanza di CSS con script JS, ma non mi aspettavo che fosse il problema qui ... Grazie !!
FelipeAls
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.