1

我有下面的代码。我正在使用非最大化窗口刷新页面。3例报告的宽度相同。为什么 resizeTo 不将窗口的宽度增加 100?

jQuery 报告的宽度和 Javascript 报告的宽度在 Firefox 和 IE10 中也不同。在 Chrome 中它们是相同的。为什么这些值和浏览器之间的差异。

<script type="text/javascript" language="JavaScript">
      $(document).ready(function ($) {
        if (window.console) console.log("Old width: " + $(window).width());
        window.setTimeout(WindowResize, 3000);

        //WindowResize();

      });

      function WindowResize()
      {
        if (navigator.appName.indexOf("Microsoft") != -1)
          {
            width = document.body.offsetWidth;
            height = document.body.offsetHeight;
          }
        else
          {
            width = window.outerWidth;
            height = window.outerHeight;
          }

        if (window.console) console.log("Old width2: " + $(window).width() +  "   width: " + width);
        window.resizeTo(width + 100, height);
        if (window.console) console.log("New width: " + $(window).width());
      }
    </script>
4

1 回答 1

0

window除非您尝试调整大小是弹出窗口,否则许多浏览器不支持此功能。

于 2013-05-15T19:13:10.613 回答