我想使用jQuery以pdf的形式下载GoogleChart,并使用以下代码。
当我运行代码时,它显示一个错误:


ReferenceError:未定义xepOnline


如何下载我的PDF?

<!-- Convert the SVG to PDF and download it -->
var click="return xepOnline.Formatter.Format('JSFiddle', {render:'download', srctype:'svg'})";
jQuery('#buttons').append('<button onclick="'+ click +'">PDF</button>');

<!-- Convert the SVG to PNG @ 120dpi and open it -->
click="return xepOnline.Formatter.Format('JSFiddle', {render:'newwin', mimeType:'image/png', resolution:'120', srctype:'svg'})";
jQuery('#buttons').append('<button onclick="'+ click +'">PNG @120dpi</button>');

<!-- Convert the SVG to JPG @ 300dpi and open it -->
click="return xepOnline.Formatter.Format('JSFiddle', {render:'newwin', mimeType:'image/jpg', resolution:'300', srctype:'svg'})";
jQuery('#buttons').append('<button onclick="'+ click +'">JPG @300dpi</button>');


JSFiddle example.

最佳答案

当我使用HighCharts.js导出功能时,出现了“ xepOnline is not defined”错误。
问题的根源缺少xepOnline.jqPlugin.js库。

关于javascript - ReferenceError:在JSFiddle中下载PDF时未定义xepOnline,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33892797/

10-09 17:28