私のアプリは Rails と jquery mobile を使用しています。$.mobile.orientationChangeEnabled の値を false に設定した後、アラート関数を使用して値を確認しました。「false」と表示されますが、向きは変わります。
で試しました
$(document).ready(function(){
$.mobile.orientationChangeEnabled = false;
........
});
と
$(document).bind("mobileinit", function(){
$.mobile.orientationChangeEnabled = false;
........
});
向きを固定するために 1 つのコードがすべてに適合するような方法はありますか?