3

该事件在适用于 android 的 firefox mobile 中不起作用。

毕竟,我如何检测方向变化?

4

2 回答 2

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(); });
于 2012-11-06T17:53:42.937 回答
0

这就像 ff for android 的魅力

$( window ).resize(function() {
  alert($( window ).height());
});
于 2015-07-03T08:37:10.407 回答