我正在使用我在网上找到的以下代码来创建jqplot的图像。它在Firefox和Chrome中运行良好,但图像在IE(+9)中混乱。点标签和图例都到处都是。
// given the div id of plot, get the img data
var imgData = $('#Barchartdiv').jqplotToImageStr({});
// create an img and add the data to it
var imgElem = $('<img/>').attr('src', imgData);
//window.open(imgData, "_blank", "scrollbars=0");
$('#img_div').append(imgElem); // append the img to the DOM
任何帮助/建议?谢谢