onclick abrir janela e tamanho específico

86

Eu tenho um link como este:

<a href="/index2.php?option=com_jumi&amp;fileid=3&amp;Itemid=11" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,')

Quero que a nova janela de abertura seja aberta em um tamanho específico. Como posso especificar a altura e a largura?

eu--''''''---------''''''''''''
fonte

Respostas:

174
<a href="/index2.php?option=com_jumi&amp;fileid=3&amp;Itemid=11"
   onclick="window.open(this.href,'targetWindow',
                                   `toolbar=no,
                                    location=no,
                                    status=no,
                                    menubar=no,
                                    scrollbars=yes,
                                    resizable=yes,
                                    width=SomeSize,
                                    height=SomeSize`);
 return false;">Popup link</a>

Onde largura e altura são pixels sem unidades (largura = 400 e não largura = 400px).

Na maioria dos navegadores não funcionará se não for escrito sem quebras de linha, uma vez que as variáveis ​​são configuradas têm tudo em uma linha:

<a href="/index2.php?option=com_jumi&amp;fileid=3&amp;Itemid=11" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=SomeSize,height=SomeSize'); return false;">Popup link</a> 
Larry Hipp
fonte
14
Você também deseja trocar o último caractere ")" por "); return false;" para evitar que o link original seja aberto além do pop-up.
Andrew
2
Um antigo, mas eu encontrei isso por meio de pesquisa, então corrigiu a resposta conforme a resposta de @AndrewSpear
neil
1
@Larry Hipp, como posso alterá-lo para caber no tamanho da tela?
Idham Choudry
@IdhamChoudry Apenas remova as propriedades de largura / altura e ele ocupará automaticamente todo o espaço disponível. Eu acredito que a configuração width=100vw, height=100vhfuncionaria também.
Vadorequest
1
Para mim funciona, mas UMA COISA IMPORTANTE - você não deve usar quebras de linha no corpo da sua função, como no exemplo acima. Eu removi as quebras de linha e funcionou para mim.
Eugene
20
window.open('http://somelocation.com','mywin','width=500,height=500');
TGuimond
fonte
12

Basta adicioná-los à string de parâmetro.

window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=350,height=250')
Joel
fonte
11
<a style="cursor:pointer"
  onclick=" window.open('http://YOUR.URL.TARGET','',' scrollbars=yes,menubar=no,width=500, resizable=yes,toolbar=no,location=no,status=no')">Your text</a>
aptx.wap.sh
fonte
Embora eu pergunte, o que isso adiciona a todas as respostas já fornecidas?
EWit
3

Estas são as melhores práticas da página window.open da Mozilla Developer Network :

<script type="text/javascript">
var windowObjectReference = null; // global variable

function openFFPromotionPopup() {
  if(windowObjectReference == null || windowObjectReference.closed)
  /* if the pointer to the window object in memory does not exist
     or if such pointer exists but the window was closed */

  {
    windowObjectReference = window.open("http://www.spreadfirefox.com/",
   "PromoteFirefoxWindowName", "resizable,scrollbars,status");
    /* then create it. The new window will be created and
       will be brought on top of any other window. */
  }
  else
  {
    windowObjectReference.focus();
    /* else the window reference must exist and the window
       is not closed; therefore, we can bring it back on top of any other
       window with the focus() method. There would be no need to re-create
       the window or to reload the referenced resource. */
  };
}
</script>

<p><a
 href="http://www.spreadfirefox.com/"
 target="PromoteFirefoxWindowName"
 onclick="openFFPromotionPopup(); return false;" 
 title="This link will create a new window or will re-use an already opened one"
>Promote Firefox adoption</a></p>
Nicolas Renon
fonte
0

Para quem procura um componente de arquivo Vue rápido, aqui está:

// WindowUrl.vue

<template>
    <a :href="url" :class="classes" @click="open">
        <slot></slot>
    </a>
</template>

<script>
    export default {
        props: {
            url: String,
            width: String,
            height: String,
            classes: String,
        },
        methods: {
            open(e) {
                // Prevent the link from opening on the parent page.
                e.preventDefault();

                window.open(
                    this.url,
                    'targetWindow',
                    `toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=${this.width},height=${this.height}`
                );
            }
        }
    }
</script>

Uso:

<window-url url="/print/shipping" class="btn btn-primary" height="250" width="250">
    Print Shipping Label
</window-url>
Steve Bauman
fonte