简体   繁体   中英

Can't open PDF on new tab using target=“_blank”

如何在新选项卡上打开PDF,仅target =“ _ blank”无法正常工作,它仍然在同一选项卡中打开pdf。

Method-1 : HTML

<a target="_blank" href="http://your_url_here.html">Link</a>

You can simply do that with setting target="_blank" for an example check this

More Details

Method-2 : Javascript

<a onclick="openInNewTab('Your URL');">Something To Click On</a>

function openInNewTab(url) {
  var win = window.open(url, '_blank');
  win.focus();
}

没有您的代码很难说出问题所在,但是进行了快速测试,这对我有用。

<a target="_BLANK" href="pdf/your_pdf.pdf">YOUR PDF</a>

You have to know: "_Blank" is not working as a "new tab" on every browser.

To do that, you have to use js like this:

<a href="..." onclick="javascript:windows.open('link', [options]);">Lnk</a>

(it will work on any browser, "_blank" will not)

EDIT: Of course, here the "link" in window.open will be the path to where your PDF file is stored.

EDIT2 (thanks to vlaz): Yep, it will work on any browser if JS is enabled, if he his not it will not.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM