我想使用的代碼:https://github.com/davidjbradshaw/iframe-resizer獲得一個沒有定義iFrameResize錯誤AngularJS
在我的index.html頁我已經包括(和它的負載):
<script src="./Scripts/iframeResizer.js"></script>
在我iframe中的內容頁面我已經包括:
<script src="iframeResizer.contentWindow.min.js"></script>
我AngularJS控制器:
ajs_module.controller("MyController",
['$scope', '$window', function ($scope, $window) {
$scope.iframeLoadedCallBack = function() {
console.log('Resizing iFrame...');
iFrameResize({ log: true }); // causes: Uncaught ReferenceError: iFrameResize is not defined
}
}])
當主機頁面加載,並嘗試調整的iFrame,我得到的錯誤:
Uncaught ReferenceError: iFrameResize is not defined
感謝您的幫助。
我加載的jQuery:感謝。 – Sako73