在cordova中获取设备高度

时间:2016-11-30 09:18:10

标签: javascript jquery cordova

我想在Cordova找到设备的高度?

pChart.chartHeight = 100;

我可以写什么代替100100应该是设备的高度。

3 个答案:

答案 0 :(得分:1)

使用.resize()

$( window ).resize(function() {
  alert($(window).height() + $(window).width);
});

答案 1 :(得分:1)

window.screen您可以获取其宽度和高度属性,但您还应添加像素密度,因为它可能会在方向上或在不同设备之间发生变化。试试这个:

var physicalScreenHeight = window.screen.height * window.devicePixelRatio;

productionChart.chartHeight = physicalScreenHeight;

如果您有更多疑问,请查看here

答案 2 :(得分:0)

试试这个。

var w = window.innerWidth
|| document.documentElement.clientWidth
|| document.body.clientWidth;

var h = window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight;

alert(w +" - "+h);