2017-03-16 64 views
0

我在我的網站上有一個pdf鏈接我希望訪問者能夠查看 - 但點擊時,它必須下載才能打開。只在線查看PDF文件

我怎樣才能解決這個問題?

理想情況下,我想讓潛在客戶儘可能簡單 - 當他們點擊鏈接時 - 打開pdf打開另一個選項卡/窗口。

var pdf = new jsPDF('p', 'pt', 'letter'); 
    // source can be HTML-formatted string, or a reference 
    // to an actual DOM element from which the text will be scraped. 
    source = $('#customers')[0]; 

    // we support special element handlers. Register them with jQuery-style 
    // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.) 
    // There is no support for any other type of selectors 
    // (class, of compound) at this time. 
    specialElementHandlers = { 
     // element with id of "bypass" - jQuery style selector 
     '#bypassme': function (element, renderer) { 
      // true = "handled elsewhere, bypass text extraction" 
      return true 
     } 
    }; 
    margins = { 
     top: 80, 
     bottom: 60, 
     left: 40, 
     width: 522 
    }; 
    // all coords and widths are in jsPDF instance's declared units 
    // 'inches' in this case 
    pdf.fromHTML(
    source, // HTML string or DOM elem ref. 
    margins.left, // x coord 
    margins.top, { // y coord 
     'width': margins.width, // max width of content on PDF 
     'elementHandlers': specialElementHandlers 
    }, 

    function (dispose) { 
     // dispose: object with X, Y of the last line add to the PDF 
     //   this allow the insertion of new lines after html 
     pdf.save('Test.pdf'); 
    }, margins); 

該代碼的鏈接在這裏jsfiddle文件是這裏。

http://jsfiddle.net/xzZ7n/4861/

+1

它的工作完美無瑕的對我來說,嘗試清除緩存。 –

+2

'pdf.output('dataurlnewwindow');'會工作。但jsFiddle有一些安全限制。在你的代碼中嘗試一下。 – Purushoth

+1

[jsPDF從.html創建PDF並在新窗口中打開]的可能重複(http://stackoverflow.com/questions/26221041/jspdf-create-pdf-from-html-and-open-in-new-window) – Purushoth

回答

1

使用這一個doc.output('dataurlnewwindow');

,而不是pdf.save('Test.pdf');