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

jquerymobile在phonegap上添加屏幕旋转事件
找半天phonegap的插件结果没啊,在jQuerymobile官网看见的有这个事件,额!!jquerymobile在phonegap上增添屏幕旋转事件
<script>
   function doOnOrientationChange(){

     switch(window.orientation){

        case-90:
        case90:
             alert('landscape');break;

        default:
             alert('portrait');break;
     }
   }

  window.addEventListener('orientationchange', doOnOrientationChange);

  doOnOrientationChange();

</script>