PDF 链接应在 mPDF 库的新选项卡中打开


PDF links should open in new tab in mPDF library

我想在新选项卡中打开嵌入在pdf中的链接。我正在使用Drupal中的mPDF库来生成pdf。
我尝试了 target="_blank",但它不起作用。这是我实际使用
的代码

<tr><td><a target="_blank" style="color: #fff;  text-decoration: none;" href="'.$course_url.'">' . $coursecertfiltered . '</a></td></tr>

如果对Javascript有信心,你可以尝试:

<a onclick="openInNewTab('path-to-pdf-file');">Open in a new Tab</a>
<script>
  function openInNewTab(url) {
    var win = window.open(url, '_blank');
    win.focus();
  }
</script>