JQuery
いくつかのプラグインを使用する必要があるカスタム DNN モジュールを作成しました。
プラグインを正常にロードしました。
しかし、エラーが発生します:
Uncaught TypeError: undefined is not a function imagesloaded.js?cdv=18:93
Uncaught TypeError: Object [object Object] has no method 'imagesLoaded' Masonry:755
GET http://dnn7site/jquery.min.map 404 (Not Found) Masonry:464
GET http://dnn7site/resources/shared/scripts/jquery/jquery.min.map 404 (Not Found)
これはJQuery
、私のカスタムモジュールにインポートされていないためだと思います。JS
次のような他のファイルを含めました。
<dnn:DnnJsInclude runat="server" FilePath="~/DesktopModules/com.demo.masonry/Scripts/jquery.infinitescroll.min.js" />
<dnn:DnnJsInclude runat="server" FilePath="~/DesktopModules/com.demo.masonry/Scripts/masonry.pkgd.js" />
<dnn:DnnJsInclude runat="server" FilePath="~/DesktopModules/com.demo.masonry/Scripts/imagesloaded.js" />
しかし、インポートの方法がわかりませんJQuery
。DNN 7.1.1
を使用しています