窗口/浏览器调整大小后重新加载我的网站(在Internet Explorer中不起作用)

时间:2013-12-20 21:44:28

标签: javascript jquery internet-explorer resize reload

我在我的<中使用了这段代码。头>:

<script>$(window).on('resize',function(){location.reload();});</script>

如何在Internet Explorer中使用它?

2 个答案:

答案 0 :(得分:0)

试试这个:

<head>
   <script type="text/javascript">
      $(window).bind('resize',function(){
         window.location.href = window.location.href;
      });
   </script>
 </head>

你也可以使用“on”。

警告:我同意其他人之前的评论。这可能是糟糕的用户体验。

答案 1 :(得分:0)

我会使用CSS媒体查询或百分比值来表示宽度和边距。重新加载页面通常是个坏主意。调整浏览器大小时,媒体查询和百分比值将自动更新。

Media Query starting point

百分比值很简单:width: 100%。只是玩弄它。