我目前正在使用 xepOnline 生成我的页面的 pdf。
这工作得很好,但我现在想要一个下载按钮旁边的按钮,它可以打开您电脑上的邮件程序并附加生成的 pdf 文件。
到目前为止我的代码:(不多)
function emailCurrentPage(){
window.location.href="mailto:?subject="+document.title+"&body="+escape(window.location.href);
}
<button onClick="javascript:emailCurrentPage()">Doormailen</button>
<button href="#" onclick="return xepOnline.Formatter.Format('content',{render:'download'},{pageWidth:'216mm', pageHeight:'279mm'}, {filename:'Test'});">Opslaan als PDF</button>