ReferenceError:在JSFiddle中下载PDF时未定义xepOnline

时间:2015-11-24 11:44:32

标签: javascript jquery

我想使用jQuery将GoogleChart下载为pdf,我使用下面的代码。 当我运行代码时,它显示错误:

  

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.

1 个答案:

答案 0 :(得分:0)

当我使用HighCharts.js导出功能时,我抓住了'xepOnline未定义'错误。 该问题的来源缺少xepOnline.jqPlugin.js库。