组合后的JavaScript抛出对象不是函数错误

我试图以编程方式组合并使用Assetic和JSMin缩小客户端页面上的所有JavaScript。 我相信这是组合中的一个问题,因为当关闭JSMin时会引发错误。

我并不是真正的JavaScript专家,所以我不确定从哪里开始,即使是一个模糊的答案也可以帮助我。

抛出的错误: object is not a function.

这些文件按照它们包含的顺序进行组合,但在文档中有内嵌的JavaScript保持不变。

另外,如果有帮助,组合的JavaScript将成为第一件事

感谢您对我的任何答案!

更新:仅供参考如果它可以帮助这是组合后但不是之前引发错误的代码,它在开始时抛出。 (这也是预缩小化)

/*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
* Licensed under the MIT License (LICENSE.txt).
*
* Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
* Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
* Thanks to: Seamus Leahy for adding deltaX and deltaY
*
* Version: 3.0.4
*
* Requires: 1.2.2+
*/

(function(d){function g(a){var b=a||window.event,i=[].slice.call(arguments,1),c=0,h=0,e=0;a=d.event.fix(b);a.type="mousewheel";if(a.wheelDelta)c=a.wheelDelta/120;if(a.detail)c=-a.detail/3;e=c;if(b.axis!==undefined&&b.axis===b.HORIZONTAL_AXIS){e=0;h=-1*c}if(b.wheelDeltaY!==undefined)e=b.wheelDeltaY/120;if(b.wheelDeltaX!==undefined)h=-1*b.wheelDeltaX/120;i.unshift(a,c,h,e);return d.event.handle.apply(this,i)}var f=["DOMMouseScroll","mousewheel"];d.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=
f.length;a;)this.addEventListener(f[--a],g,false);else this.onmousewheel=g},teardown:function(){if(this.removeEventListener)for(var a=f.length;a;)this.removeEventListener(f[--a],g,false);else this.onmousewheel=null}};d.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return     this.unbind("mousewheel",a)}})})(jQuery);
链接地址: http://www.djcxy.com/p/45709.html

上一篇: after combination javascript throws object is not a function error

下一篇: W3 Total Cache minification problems >:(