var $iframe = $("");
$iframe.attr("src", "http://123.com:8075/WebReport/img/"+filename);
var o = {
title:"图片【"+filename+"】",
width: 600,
height: 600,
left:0,
top:0
};
FR.showDialogXY(o.title, o.width, o.height, $iframe,o,0,0);如下图显示,怎么写代码让图片,自动缩放?(不失真的前提下)
55705