2011-10-27 30 views

回答

0

如果你想改變方向改變使用的東西:

$(window).bind("orientationchange", function(){ 
    if(window.orientation != 0){ 
     // Do something when sideways 
    }else{ 
     // Do something when normal 
    } 
}); 

祝你好運!