//按钮打开iframe对话框:
var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>"); // iframe参数的命名及宽高等
$iframe.attr("src", "${servletURL}?reportlet=目录/报表名.cpt&op=write&bianhao"+bianhao);
var o = {
title : "标题名",
width : 1000,
height: 500
};
FR.showDialog(o.title, o.width, o.height, $iframe,o); //首先弹出对话框
&后面的bianhao为子报表中查询语句中的参数,
+后面的参数,可在 代码上面的参数里添加