我的应用程序使用 rails 和 jquery mobile。我使用警报功能查看 $.mobile.orientationChangeEnabled 设置为 false 后的值,它显示“false”但仍会更改方向。
我试过了
$(document).ready(function(){
$.mobile.orientationChangeEnabled = false;
........
});
和
$(document).bind("mobileinit", function(){
$.mobile.orientationChangeEnabled = false;
........
});
有没有一种方法,例如一个代码适合所有冻结方向?