IE9 无法正确打印 Google Visualization iframe

发布于 2024-12-10 23:18:37 字数 418 浏览 0 评论 0原文

我有一个在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文