📜  仅在 767 屏幕中重新加载窗口 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:21.994000             🧑  作者: Mango

代码示例1
$(document).ready(function(){
  $(window).on('resize',function(){
      if ($(window).width() < 767) {   
        location.reload();  // refresh page 
      }
      else {  
        // width more than 768px for PC  
      }
  }); 
});