在Angular 2中获取文档高度

时间:2017-01-05 10:23:05

标签: jquery angular

我需要将一些jQuery代码转换为Angular 2,并且在确定如何获取文档高度时遇到一些麻烦。

我使用的jQuery代码是

$(document).height();

我如何在Angular 2中实现这一目标?

由于

2 个答案:

答案 0 :(得分:1)

如果没有jQuery只使用document.height呢?

<击>     document.height

https://developer.mozilla.org/en-US/docs/Web/API/Document/height

这在Plunker中起作用

document.documentElement.clientHeight

Plunker example

答案 1 :(得分:1)

使用document.height在角度2和控制台中都不起作用。

&#13;
&#13;
console.log(window.outerHeight);
console.log(window.innerHeight);
console.log(screen.height);
&#13;
&#13;
&#13;