为什么以下代码导致Firebug在$('#galleria').galleria({行上报告错误?

      $('#galleria').galleria({
              dataSource: data,
              width:930,
              height:575,
              transition: 'fade',
              carousel: 'true' ,
              carouselSpeed: 1200  ,
              showCounter :'false',
              showImagenav : 'false',
              showInfo : 'false',
              imageCrop : 'true',
              maxScaleRatio: 1,


              extend: function() {
                this.bind(Galleria.LOADFINISH, function(e) {
                 $(e.imageTarget).css('cursor','pointer').click(this.proxy(function(e) {
                   e.preventDefault(); // removes the garbage
                   $.fancybox({

                        $('#galleria').galleria({
                            width: 500,
                            height: 500
                        });

                   });
                }))
               });
              }
        });

最佳答案

$.fancybox({

        $('#galleria').galleria({
            width: 500,
            height: 500
        });

   });


在语法上是无效的。

关于javascript - 缺少:属性ID之后,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6229158/

10-11 08:25