我按钮点击事件这么写的为什么在网页看是好使的,在决策平台他就不关闭弹窗了?var url = "https://bbs.fanruan.com/" //跳转地址var iframe = $("<iframe width='100%' height='100%' scrolling='yes' frameborder='0'>");iframe.attr("src", url);var o = { width: 800, //对话框宽度 height: 550 //对话框高度};FR.showDialog("耐心等待吧!!!", o.width, o.height, iframe); //弹出对话框setTimeout(function() {window.parent.FR.closeDialog();}, 2000)