window.open(url);----新窗口打开
window.location.href=url;----当前页面打开
--------------------------------------
var $iframe = $("
$iframe.attr("src", "http://www.baidu.com"); //childtest.cpt为点击查询时,对话框中显示的子报表
var o = {
title: "筛选所需数据并返回",
width: 600,
height: 300,
top:-300px,
left:-300px,
//closable:true, //是否显示关闭按钮,默认true
//confirm:true, //是否添加确认取消按钮,默认false
//draggable:true //是否可拖动,默认true
};
FR.showDialog(o.title, o.width, o.height, $iframe, o); //弹出对话框
$(".fr-core-panel-title").eq(0).css({"color":"red","font-family":"microsoft yahei","font-size":"14px","text-align":"center"}) ; //窗体标题颜色大小居中
----