0

我正在尝试在我的设备上收听转弯事件

$('body').bind('turn', function(event, info){
alert(info.orientation);
console.log(info.orientation); // landscape or profile
});

此事件仅在开始时触发一次。我如何让它继续听?

4

1 回答 1

0

包含 jquery 移动框架后:

 $(window).bind( 'orientationchange', function(e){
   alert(jQuery.event.special.orientationchange.orientation()); 
 });
于 2012-11-19T21:20:12.777 回答