javascript - 仅在线查看 PDF 文件

标签 javascript jquery jspdf

我的网站上有一个 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/

最佳答案

使用这个doc.output('dataurlnewwindow');

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

关于javascript - 仅在线查看 PDF 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42840059/

相关文章:

angular - 下载为 PDF 时 Canvas 图表模糊

javascript - 在 AngularJS 中使用 jsPDF 中的 addHTML 函数

javascript - Pingdom 网站速度测试 - 瀑布式 GAP

javascript - Backbone.js View 无法正确取消绑定(bind)事件

javascript - 获取具有特定类的元素的内容和 Href

html - jsPDF - 将 html 页面准确捕获为 PDF

JavaScript 掩码

javascript - 隐藏输入不会触发 React 的 onChange 事件

php - 使用 anchor 指定链接加载位置

javascript - 为每个类别添加一个循环编号