【发布时间】:2015-02-02 12:42:18
【问题描述】:
final html.IFrameElement iframe = rootDemoElement.querySelector("iframe");
final int contentHeight = <???>.scrollHeight;
这在 JS 中有效:
var contentHeight = iframe.contentDocument.documentElement.scrollHeight;
contentDocument 在 Dart 中不可用。
Dart中是否真的可能缺少contentDocument?
【问题讨论】: