我需要将一些jQuery代码转换为Angular 2,并且在确定如何获取文档高度时遇到一些麻烦。
我使用的jQuery代码是
$(document).height();
我如何在Angular 2中实现这一目标?
由于
答案 0 :(得分:1)
如果没有jQuery只使用document.height
呢?
<击> document.height 击>
https://developer.mozilla.org/en-US/docs/Web/API/Document/height
这在Plunker中起作用
document.documentElement.clientHeight
答案 1 :(得分:1)
使用document.height
在角度2和控制台中都不起作用。
console.log(window.outerHeight);
console.log(window.innerHeight);
console.log(screen.height);
&#13;