标签: angular angular2-directives
如果我有一个iFrame,我可以使用这个jQuery代码来获取其内容高度,但我试图避免在我的Angular 2应用程序中使用jQuery。我怎么能实现这个目标呢?
$("#iframe").load(function() { $(this).height( $(this).contents().find("html").height() ); });