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