帆软弹窗 var iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='yes' framedorder='0'>"); iframe.attr("src", "http://localhost:8081/batchImport?userName="+userName); // 给 iframe 添加 src 属性 var o = { width: 650, //对话框宽度 height: 550 //对话框高度 }; FR.showDialog("批量上传", o.width, o.height, iframe, o); //弹出对话框 弹出成功后页面 怎么在这个本地html页面功能完成后 触发帆软的关闭弹窗 |