该事件无法在firefox mobile for android中使用。
如何检测方向变化?
答案 0 :(得分:5)
Firefox for Android不支持orientationchange事件,但您可以使用媒体查询侦听器获得相同的结果。
var mqOrientation = window.matchMedia("(orientation: portrait)");
// The Listener will fire whenever this either matches or ceases to match
mqOrientation.addListener(function() { self.handleViewportChange(); });
答案 1 :(得分:0)
这就像ff for android的魅力
$( window ).resize(function() {
alert($( window ).height());
});