点击那个关闭按钮,它就关闭呀。也不慢呀
要自动关闭?
var url = encodeURI(encodeURI("/webroot/decision/view/report?viewlet=GettingStarted.cpt")); //跳转地址
var iframe = $("<iframe width='100%' height='100%' scrolling='yes' frameborder='0'>");
iframe.attr("src", url);
var o = {
width: 800, //对话框宽度
height: 550 //对话框高度
};
//5秒后自动关闭,你自己设置时间
FR.showDialog("耐心等待吧!!!", o.width, o.height, iframe); //弹出对话框
setTimeout(function() {
FR.closeDialog();
}, 5000)