将 pdf 上的链接定位到新页面

发布于 2024-07-30 12:14:10 字数 537 浏览 5 评论 0原文

我有一个使用 cfdocument 提交到 pdf 的 html 表单。

在该 pdf 中,我在底部有一个指向另一项政策的链接。 我需要该链接在新页面上打开,而不是 _self。

我尝试过使用 Jquery 打开窗口,不确定这是否可能,但至少可以说没有成功。

所以基本上,我已经有了。

<cfdocument format="pdf">


    <a href="http://www.stackoverflow.com" target="_blank">stackoverflow</a>


</cfdocument>

不可能。 案件已结!

原因:

  • 出于我的目的,我需要能够在浏览器窗口中打开另一个 pdf,但为了做到这一点,您必须将第二个 pdf 下载到 Acrobat 或您使用的其他阅读器已经有了。
  • 另外,您无法使用 jquery 创建新窗口。

I've got a html form submitting to a pdf using cfdocument.

Within that pdf, I have a link at the bottom that goes to another policy. I need that link to open up on a new page, rather than _self.

I've tried using Jquery to open the window and not sure if that is even possible, but wasn't successful to say the least.

So basically, I've got.

<cfdocument format="pdf">


    <a href="http://www.stackoverflow.com" target="_blank">stackoverflow</a>


</cfdocument>

Not possible. Case closed!

Reason:

  • For my purpose, I'd need to be able to open another pdf in a browser window, but in order to do that, you would have to download the second one to Acrobat or another reader you've got.
  • Also, you're not able to use jquery to create the new window.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天涯离梦残月幽梦 2024-08-06 12:14:10
<a href="http://www.domain.com" onClick="window.open('http://www.domain.com/pdf.pdf','pdfWindow','width=400, height=400, scrollbars=yes, resizable=yes')">PDF</a>

或者使用 JQuery

<a href="http://www.domain.com" id="openPdfLink">PDF</a>

$(document).ready(function(){
     $('#openPdfLink').click(function(){
          window.open(this.href);
          return false;
     });

});
<a href="http://www.domain.com" onClick="window.open('http://www.domain.com/pdf.pdf','pdfWindow','width=400, height=400, scrollbars=yes, resizable=yes')">PDF</a>

Or with JQuery

<a href="http://www.domain.com" id="openPdfLink">PDF</a>

$(document).ready(function(){
     $('#openPdfLink').click(function(){
          window.open(this.href);
          return false;
     });

});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文