请问,我在FR7下用这段代码,可以取得返回值并填入控件框中,但是在FR8中,返不回了,是不是FR8的变量变了?附上代码: window.form = this.options.form; //把参数界面的form赋值给全局变量 var col = contentPane.curLGP.getTDCol(contentPane.curLGP.currentTDCell);//获取列号 var row = contentPane.curLGP.getTDRow(contentPane.curLGP.currentTDCell);//获取行号 var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>"); // iframe参数的命名及宽高等 $iframe.attr("src", "${servletURL}?reportlet=doc/fy_erp/cgbb/%5B6750%5D%5B6599%5D%5B5907%5D%5B8d27%5D%5B91c7%5D%5B8d2d%5D%5B5355%5D_%5B7269%5D%5B54c1%5D%5B67e5%5D%5B8be2%5D.cpt&op=view&col="+col+"&row="+row); //childtest.cpt为点击查询时,对话框中显示的子报表 //cgbb/ABC.cpt(上面的地址栏己转换) var o = { title : "请选择记录项", width : 600, height: 500 }; FR.showDialog(o.title, o.width, o.height, $iframe,o); //首先弹出对话框 |