0

我的应用程序使用 rails 和 jquery mobile。我使用警报功能查看 $.mobile.orientationChangeEnabled 设置为 false 后的值,它显示“false”但仍会更改方向。

我试过了

$(document).ready(function(){
     $.mobile.orientationChangeEnabled = false;  
        ........
});

$(document).bind("mobileinit", function(){
     $.mobile.orientationChangeEnabled = false;  
        ........
});

有没有一种方法,例如一个代码适合所有冻结方向?

4

1 回答 1

1

我认为您有一个误解:$.mobile.orientationChangeEnabled并不是锁定页面的方向,而是与 jqm 的orientationchange 事件有关-请参阅http://api.jquerymobile.com/orientationchange/

于 2013-07-01T22:15:32.777 回答