window.form = this.options.form; //当前的form赋值给全局变量 var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>"); // iframe参数的命名及宽高等 $iframe.attr("src", "${servletURL}?reportlet=chart/childtest.cpt&op=write&id="+id+"&col="+col+"&row="+row); //childtest.cpt为点击查询时,对话框中显示的子报表 var o = { title : "筛选所需数据并返回", width : 600, height: 300 }; FR.showDialog(o.title, o.width, o.height, $iframe,o); //弹出对话框 我有中文参数 报错啦 @wzh5788 |