2011-11-17 5 views
1
내가 IE에서 PDF 문서를 표시하려면 다음 코드를 사용하고

새 탭 또는 바람직하게는 새 창 중 하나를 선택하십시오.열기 PDF/창

<a class="menu" href="file://MyServer/MyFolder/MyFile.pdf" target="_blank">Click Me!</a> 

대상 속성이 어떤 링크를 열 수 있습니다 (단지 HTML 또는 PDF) 다른 또는 같은 창에서 :

답변

6

는이 새 창에 표시하는 방법입니다. 그것에 대해 읽으십시오 here.

 _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. 
4

"target"속성을 A 태그에 추가하십시오. 예 :

<a class="menu" target="_blank" href="file://MyServer/MyFolder/MyFile.pdf">Click Me!</a>