jquerymobile在phonegap上添加屏幕旋转事件

找半天phonegap的插件结果没啊,在jQuerymobile官网看见的有这个事件,额!!酷 <script>  function doOnOrientationChange(){  switch(window.orientation){  case-90:  case90: alert('landscape');break;  default: alert('portrait');break;  }  } window.addEventListener('orientationchange', doOnOrientationChange);  doOnOrientationChange(); </script>

你可能感兴趣的:(JavaScript,html5,jquerymobile)