我只是想知道这是否有必要:
;(function ( $, window, document, undefined ) {
Cluster.prototype.initiate_test_touch_event_support = function(callback) {
return (Modernizr.touch) ? callback.call(this) : true;
};
})( jQuery, window, document );
或者我可以只使用原型而不在 DOM 负载上包装所有内容?