Klicken Sie auf Fenster öffnen und bestimmte Größe

86

Ich habe einen Link wie diesen:

<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,')

Ich möchte, dass das neue Öffnungsfenster in einer bestimmten Größe geöffnet wird. Wie gebe ich Höhe und Breite an?

l - '' '' '' - '' '' '' '' '' '' ''
quelle

Antworten:

172
<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>

Wobei Breite und Höhe Pixel ohne Einheiten sind (Breite = 400, nicht Breite = 400 Pixel).

In den meisten Browsern funktioniert es nicht, wenn es nicht ohne Zeilenumbrüche geschrieben wird. Sobald die Variablen eingerichtet sind, haben Sie alles in einer Zeile:

<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
quelle
14
Sie möchten auch das letzte ")" Zeichen gegen "); return false;" um zu verhindern, dass der ursprüngliche Link zusätzlich zum Popup geöffnet wird.
Andrew
2
Ein alter , aber ich fand diese so über Such Antwort korrigiert , wie pro Antwort @AndrewSpear
neil
1
@ Larry Hipp Wie kann ich es an die Größe des Bildschirms anpassen?
Idham Choudry
@IdhamChoudry Entfernen Sie einfach die Eigenschaften width / height und es wird automatisch der gesamte verfügbare Speicherplatz belegt. Ich glaube, die Einstellung width=100vw, height=100vhwürde auch funktionieren.
Vadorequest
1
Für mich funktioniert es, aber EINE WICHTIGE SACHE - Sie sollten keine Zeilenumbrüche im Hauptteil Ihrer Funktion verwenden, wie im obigen Beispiel. Ich habe Zeilenumbrüche entfernt und es hat bei mir funktioniert.
Eugene
20
window.open('http://somelocation.com','mywin','width=500,height=500');
TGuimond
quelle
12

Fügen Sie sie einfach der Parameterzeichenfolge hinzu.

window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=350,height=250')
Joel
quelle
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
quelle
Obwohl ich frage, was trägt dies zu all den bereits gegebenen Antworten bei?
EWit
3

Dies sind die Best Practices auf der window.open- Seite von 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
quelle
0

Wer nach einer schnellen Vue-Dateikomponente sucht, kann loslegen:

// 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>

Verwendung:

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