你的跳转是怎么配置的
------------
参考这个思路
(1)先获取前面控件的值
var aa = this.options.form.getWidgetByName("控件名").getValue();
或是
var aa = _g().getWidgetByName("控件名").getValue();
(2)根据前面的值跳转
if(aa=="A")
{
window.open(跳转明细地址1);
}
else if(aa=="B")
{
window.open(跳转明细地址2);
}
else {
window.open(跳转明细地址2);
}
-----------------
或是
if
(series==
'华东'
)
/*判断系列名为华东*/
{
var
URL=
'/webroot/decision/view/report?viewlet=demo/basic/产品明细.cpt'
;
window
.open(
encodeURI
(
encodeURI
(URL)));
//在新标签页打开产品明细.cpt
}
if
(series==
'华北'
)
/*判断系列名为华北*/
{
var
URL=
'/webroot/decision/view/report?viewlet=demo/basic/分组统计.cpt'
;
window
.open(
encodeURI
(
encodeURI
(URL)));
//在新标签页打开分组统计.cpt
}