怎么把最下面那个提示改造到现有的这个里面加个提示正在处理 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=/RightsProfile/fr_Institutional_settings_C.cpt&op=write&group_level="+group_level+"&useraccount="+useraccount); //childtest.cpt为点击查询时,对话框中显示的子报表 var o = { title : "新增项目", width : 600,//调整对话框宽度 height: 500//调整对话框高度 }; FR.showDialog(o.title, o.width, o.height, $iframe,o); //弹出对话 //FR.showLoadingDialog(o.title, o.width, o.height, $iframe,o,{ title: "正在处理",text: "正在处理,请等待……" }); //弹出对话框 //setTimeout(function() { // FR.hideLoadingDialog() //}, 3000); |