我有这个iframe使用基本的JavaScript:
<iframe id="upload_iframe" name="upload_iframe" onLoad="uploadDone();"></iframe>
uploadDone();当iframe的内容已加载时,该方法会触发该方法。
uploadDone();
如何在Angular中做同样的事情?我想在加载iframe时在控制器上调用一个函数,但ng-onload到目前为止我还没有看到。
ng-onload
尝试将控制器中的函数定义为:
window.uploadDone=function(){ /* have access to $scope here*/ }