将帆软的页面嵌入自己的系统使用帆软自带的超链接选择对话框是正常的使用JS弹出对话var width1 = parent.document.body.clientWidth*0.95;var height1 = parent.document.body.clientHeight*0.95;//模板路径var url = FR.cjkEncode("/webroot/decision/view/form?viewlet=退市详情.frm");//窗体var $iframe = $("//将窗体的src属性设置为模板路径$iframe.attr("src", url);//窗体的属性var o = { title: "退市详情", //标题 width: width1, //宽度 height: height1, //高度 //closable:true, //是否显示关闭按钮,默认true //confirm:true, //是否添加确认取消按钮,默认false //draggable:true //是否可拖动,默认true};//弹出窗体FR.showDialog(o.title, o.width, o.height, $iframe, o);会报以下的错误CustomJSError : Blocked a frame with origin "https://XXX.XXX.com.cn" from accessing a cross-origin frame.自带的对话框的长宽都是写死了的,分辨率不同看的就差异很大