通过jquery手机在手机间隙中实施定向变更事件

有人可以通过jquery手机在手机间隙中让我知道正确的方向更改事件代码吗?在哪里和如何实现这个orientationChange功能

解决方法

$(window).bind('orientationchange',_orientationHandler);

那么在_orientationHandler函数中,有如下的东西:

if(event.orientation){
      if(event.orientation == 'portrait'){
                  //do something
      }
      else if(event.orientation == 'landscape') {
                    //do something
      }
}

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...