在单独的选项卡/窗口中打开PDF

Ses*_*ame 1 html asp.net internet-explorer

我正在使用以下代码在IE中显示PDF文档:

<a class="menu" href="file://MyServer/MyFolder/MyFile.pdf">Click Me!</a>
Run Code Online (Sandbox Code Playgroud)

这将在当前选项卡中显示PDF ...如何在新选项卡或最好是新窗口中打开它?

Eys*_*Bye 6

这是您在新窗口中显示的方式:

  <a class="menu" href="file://MyServer/MyFolder/MyFile.pdf" target="_blank">Click Me!</a>
Run Code Online (Sandbox Code Playgroud)

target属性可以在其他窗口或同一窗口中打开任何链接(不仅仅是html或pdf).在这里阅读它.

     _blank  Renders the content in a new window without frames.
     _parent Renders the content in the immediate frameset parent.
     _search Renders the content in the search pane.
     _self   Renders the content in the frame with focus.
     _top    Renders the content in the full window without frames.
Run Code Online (Sandbox Code Playgroud)