onclick jendela terbuka dan ukuran tertentu

90

Saya punya link seperti ini:

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

Saya ingin jendela pembuka baru terbuka dalam ukuran tertentu. Bagaimana cara menentukan tinggi dan lebar?

Alex Gordon
sumber

Jawaban:

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

Di mana lebar dan tinggi adalah piksel tanpa satuan (lebar = 400 bukan lebar = 400 piksel).

Di sebagian besar browser, ini tidak akan berfungsi jika tidak ditulis tanpa jeda baris, setelah variabel diatur semuanya dalam satu baris:

<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
sumber
14
Anda juga ingin menukar karakter ")" terakhir untuk "); return false;" untuk mencegah tautan asli dibuka selain munculan.
Andrew
2
Yang lama tetapi saya menemukan ini melalui pencarian jadi jawaban yang dikoreksi sesuai balasan dari @AndrewSpear
neil
1
@ Larry Hipp bagaimana saya bisa mengubahnya agar sesuai dengan ukuran layar?
Idham Choudry
@IdhamChoudry Cukup hapus properti lebar / tinggi dan secara otomatis akan mengambil semua ruang yang tersedia. Saya percaya pengaturan width=100vw, height=100vhakan berhasil juga.
Vadorequest
1
Bagi saya ini berfungsi, tetapi SATU HAL PENTING - Anda tidak boleh menggunakan jeda baris di tubuh fungsi Anda, seperti pada contoh di atas. Saya telah menghapus jeda baris dan itu berhasil untuk saya.
Eugene
20
window.open('http://somelocation.com','mywin','width=500,height=500');
TGuimond
sumber
12

Tambahkan saja ke string parameter.

window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=350,height=250')
Joel
sumber
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
sumber
Meskipun saya bertanya, apa yang ditambahkan ini ke semua jawaban yang sudah diberikan?
EWit
3

Ini adalah praktik terbaik dari halaman jendela.open Jaringan Pengembang Mozilla :

<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
sumber
0

Siapa pun yang mencari komponen file Vue cepat, ini dia:

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

Pemakaian:

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

Menggunakan fungsi dalam naskah ketikan

openWindow(){
    //you may choose to deduct some value from current screen size
    let height = window.screen.availHeight-100;
    let width = window.screen.availWidth-150;
    window.open("http://your_url",`width=${width},height=${height}`);
}
7guyo
sumber