//idstr--打印内容的id
function printView(idstr){
var el = document.getElementById(idstr);
var iframe = document.createElement('IFRAME');
var doc = null;
iframe.setAttribute('style',
'position:absolute;width:0px;height:0px;left:-500px;top:-500px;');
document.body.appendChild(iframe);
doc = iframe.contentWindow.document;
doc.write('<div>' + el.innerHTML + '</div>');
doc.close();
var img = $(doc).find("img");
for(var i = 0; i < img.length; i++) {
img.eq(i).css("margin", "0 auto");
}
iframe.contentWindow.focus();
iframe.contentWindow.print();
if(navigator.userAgent.indexOf("MSIE") > 0) {
document.body.removeChild(iframe);
}
}