Angularjs(用TS编写)刷新指定iframe

前端之家收集整理的这篇文章主要介绍了Angularjs(用TS编写)刷新指定iframe前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。



let ifrm: HTMLIFrameElement = document.getElementById("myIframe") as HTMLIFrameElement; if (ifrm) { ifrm.contentDocument.location.reload(); }

猜你在找的Angularjs相关文章