仅在landscape>时才在orientation orientation上重新加载页面。 1,024像素

时间:2016-01-30 17:44:44

标签: reload tablet orientation-changes

我只需要在横向模式大于1024px时定位平板电脑,然后在方向更改时重新加载。每次更改方向时重新加载。

我试过这个但是没有用。

$(window).on("orientationchange",function(){
      if (($(window).width() > 1024)  && ($(window).height() > 1024)){ 
        location.reload(); 
      }
});

任何帮助?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。

if (($(window).width() > 1024)  || ($(window).height() >= 1024)){   
        $(window).on("orientationchange",function(){
             location.reload(); 
        });   
}