与其他脚本共享一个功能

时间:2013-11-11 16:32:56

标签: javascript jquery asp.net-mvc-4 requirejs

我有一个脚本文件(Shared.js),其中包含我想在其他两个js文件中使用的函数,sampleA.js,sampleB.js。

Shared.js:

(function ($) {
    $.fn.extend({       
        rotaterator: function (options) {
                      .....
        }
    });
})(jQuery);

sampleA.js:

function A(block) {
   $('.SomeItemAA').rotaterator({ ... });
};

sampleB.js:

function B(block) {
   $('.SomeItemBB').rotaterator({ ... });
};

sampleA.js和sampleB.js使用脚本标记加载到我的asp.net mvc 4视图中。

那么如何使用require.js做到这一点?有可能吗?

0 个答案:

没有答案