IE9 无法正确打印 Google Visualization iframe
我有一个在 iframe 内使用 Google Visualization 显示的条形图。我试图用下面的代码打印它,
var iframeEle = $(this).parent().parent().find("iframe");
if(iebrowser) {
var iedoc = iframeEle[0].contentWindow.document;
iedoc.execCommand('print', false, null);
}
else { iframeEle[0].contentWindow.print(); }
这在 IE7/8、FireFox、Chrome 中工作得很好......但在 IE9 中我只以数字形式返回数据,并以一个长字符串形式返回标题。有人知道为什么 IE9 不喜欢这样的谷歌可视化表格吗?
I have a barchart that is being displayed using Google Visualization inside an iframe. I am trying to print this with the following code,
var iframeEle = $(this).parent().parent().find("iframe");
if(iebrowser) {
var iedoc = iframeEle[0].contentWindow.document;
iedoc.execCommand('print', false, null);
}
else { iframeEle[0].contentWindow.print(); }
This is working perfect in IE7/8, FireFox, Chrome....But in IE9 i only get the data back as numbers, and the title back as one long string. Anyone know why IE9 does not like this with a google visualization table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论