这个可以获取当前页面宽和高,然后直接弹出窗口
var w=document.body.clientWidth;//获取高度
var h=document.body.clientHeight//获取宽度
var url = FR.cjkEncode("/webroot/decision/view/report?viewlet=GettingStarted.cpt&op=write");
//窗体
var $iframe = $("
//将窗体的src属性设置为模板路径
$iframe.attr("src", url);
//窗体的属性
var o = {
title: "对话框", //标题
width: w/2, //宽度,当前页面一半,可以处以3,就是当前的33%
height: h/2, //高度,当前页面一半
};
//弹出窗体
FR.showDialog(o.title, o.width, o.height, $iframe, o);