<bdo id='4S5Gg'></bdo><ul id='4S5Gg'></ul>
    <tfoot id='4S5Gg'></tfoot>

  1. <i id='4S5Gg'><tr id='4S5Gg'><dt id='4S5Gg'><q id='4S5Gg'><span id='4S5Gg'><b id='4S5Gg'><form id='4S5Gg'><ins id='4S5Gg'></ins><ul id='4S5Gg'></ul><sub id='4S5Gg'></sub></form><legend id='4S5Gg'></legend><bdo id='4S5Gg'><pre id='4S5Gg'><center id='4S5Gg'></center></pre></bdo></b><th id='4S5Gg'></th></span></q></dt></tr></i><div id='4S5Gg'><tfoot id='4S5Gg'></tfoot><dl id='4S5Gg'><fieldset id='4S5Gg'></fieldset></dl></div>
  2. <legend id='4S5Gg'><style id='4S5Gg'><dir id='4S5Gg'><q id='4S5Gg'></q></dir></style></legend>

    <small id='4S5Gg'></small><noframes id='4S5Gg'>

    1. 谷歌浏览器中的 window.open 高度与其他浏览器不同

      window.open height isn#39;t the same in Google Chrome as other browsers(谷歌浏览器中的 window.open 高度与其他浏览器不同)

      • <i id='93eG4'><tr id='93eG4'><dt id='93eG4'><q id='93eG4'><span id='93eG4'><b id='93eG4'><form id='93eG4'><ins id='93eG4'></ins><ul id='93eG4'></ul><sub id='93eG4'></sub></form><legend id='93eG4'></legend><bdo id='93eG4'><pre id='93eG4'><center id='93eG4'></center></pre></bdo></b><th id='93eG4'></th></span></q></dt></tr></i><div id='93eG4'><tfoot id='93eG4'></tfoot><dl id='93eG4'><fieldset id='93eG4'></fieldset></dl></div>
          <tfoot id='93eG4'></tfoot>
        1. <small id='93eG4'></small><noframes id='93eG4'>

            <tbody id='93eG4'></tbody>

          1. <legend id='93eG4'><style id='93eG4'><dir id='93eG4'><q id='93eG4'></q></dir></style></legend>
              • <bdo id='93eG4'></bdo><ul id='93eG4'></ul>
                本文介绍了谷歌浏览器中的 window.open 高度与其他浏览器不同的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在使用 javascript 的 window.open 在用户点击指定宽度和高度 (760x581) 时打开浏览器窗口,这在 Internet Explorer、Safari 和 Firefox 上正常工作,但 Google Chrome 给我带来了问题.在其他浏览器中,高度被正确地用作内容的高度,但在 Google Chrome 中,它使实际浏览器窗口的高度为 581 像素而不是内容.有没有办法解决这个问题?

                I am using javascript's window.open to open a browser window on a user click at a specified width and height (760x581), and this works correctly on Internet Explorer, Safari, and Firefox, but Google Chrome is giving me issues. In the other browsers, the height is correctly used as the height of the content, but in Google Chrome it is making the actual browser window 581 pixels tall instead of the content. Is there a way to fix this?

                <a href="http://domain.com/example.php" onclick="window.open('http://domain.com/example.php', '', 'width=760, height=581, top=15, left=15, toolbar=0, menubar=0, scrollbars=1, resizable=1, copyhistory=0, location=0, directories=0, status=1, titlebar=1, personalbar=0');return false">click here</a>
                

                推荐答案

                于是我又搞砸了,发现有些浏览器支持 window.open 的属性 innerHeight以下内容在所有浏览器中均按预期工作,所需内容高度为 775 像素,仅向 Chrome 添加 50 像素:

                So I messed with things more and discovered that some browsers supported the property innerHeight for window.open and the following worked as expected in all browsers with the desired content height at 775px with 50px added to Chrome only:

                window.open($(this).attr('href'), 'videoplayer',
                   'width=1242, height=775, innerHeight=825, location=no, menubar=no, status=no, titlebar=no, scrollbars=no'
                );
                

                我在 Chrome 6.0.472.63、Firefox 3.6、3 和 2、IE 8 &7 和 Opera 10.62.当我只使用 height 时,Chrome 会短约 50px 并且有滚动条,但上面的所有浏览器都很好.添加的 innerHeight 属性设置为比我希望它在 Chrome 和所有其他浏览器中工作的值高 50 像素.

                I tested this in Chrome 6.0.472.63, Firefox 3.6, 3, and 2, IE 8 & 7, and Opera 10.62. When I was only using height Chrome would be about 50px too short and have scrollbars but all the browsers above were fine. With the added innerHeight property set at 50px more than what I want it worked in Chrome as well as all other browsers.

                更新: 看起来这在 Safari 中造成了一个问题,增加了 50px 的高度.将研究解决该问题的方法.

                Update: It looks like this creates a problem in Safari with an added 50px of height. Will look into ways to get around that.

                这篇关于谷歌浏览器中的 window.open 高度与其他浏览器不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Fetch multiple links inside foreach loop(在 foreach 循环中获取多个链接)
                Backbone Fetch Request is OPTIONS method(Backbone Fetch Request 是 OPTIONS 方法)
                Fetch API leaks memory in Chrome(Fetch API 在 Chrome 中泄漏内存)
                How can I download and save a file using the Fetch API? (Node.js)(如何使用 Fetch API 下载和保存文件?(Node.js))
                Send blob data to node using fetch, multer, express(使用 fetch、multer、express 将 blob 数据发送到节点)
                Sending a custom User-Agent string along with my headers (fetch)(发送自定义用户代理字符串以及我的标头(获取))
                <i id='mNLtj'><tr id='mNLtj'><dt id='mNLtj'><q id='mNLtj'><span id='mNLtj'><b id='mNLtj'><form id='mNLtj'><ins id='mNLtj'></ins><ul id='mNLtj'></ul><sub id='mNLtj'></sub></form><legend id='mNLtj'></legend><bdo id='mNLtj'><pre id='mNLtj'><center id='mNLtj'></center></pre></bdo></b><th id='mNLtj'></th></span></q></dt></tr></i><div id='mNLtj'><tfoot id='mNLtj'></tfoot><dl id='mNLtj'><fieldset id='mNLtj'></fieldset></dl></div>

                <tfoot id='mNLtj'></tfoot>
                  <tbody id='mNLtj'></tbody>
                <legend id='mNLtj'><style id='mNLtj'><dir id='mNLtj'><q id='mNLtj'></q></dir></style></legend>

                  1. <small id='mNLtj'></small><noframes id='mNLtj'>

                        • <bdo id='mNLtj'></bdo><ul id='mNLtj'></ul>