我想在Cordova找到设备的高度?
pChart.chartHeight = 100;
我可以写什么代替100
? 100
应该是设备的高度。
答案 0 :(得分:1)
$( 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);