有滚动条是因为你的弹窗的数据多,你设置弹窗的高度与宽度不够,这个你可以设置大一些就行了。如果要去掉标题栏的话,用js写吧
var url = encodeURI("/webroot/decision/view/report?viewlet=标准地图.frm");//自己改里面的文件与路径就是=后面的内容
//窗体
var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>");
//将窗体的src属性设置为模板路径
$iframe.attr("src", url);
//窗体的属性
var o = {
width: 800, //宽度 自己改
height: 600 //高度 自己改
}
FR.showDialog(o.title, o.width, o.height, $iframe, o);
$(".fr-core-panel-header.fr-core-panel-style-blue.fr-core-window-header",parent.document).remove();
$(".fr-core-panel-body.fr-core-panel-body-border.fr-core-window-body",parent.document).css('top','0px');
var s_height=$(".fr-core-window.ui-state-enabled",parent.document).css('height');
$(".fr-core-panel-body.fr-core-panel-body-border.fr-core-window-body",parent.document).css('height',s_height);
效果: