添加一个控制循环控件(myself),初始值默认设置为0。在web属性添加加载结束事件:
var my=_g().getParameterContainer().getWidgetByName("myself").getValue();
//alert(my);
setTimeout(function() {
if(my==0){
var cptpath="测试/hys_下拉框_test.cpt";
window.location=encodeURI(encodeURI("${servletURL}?viewlet="+cptpath+"&op=view&myself=1")); //本页面跳转,替换本页面
}
}, 3000)
如果需要带参刷新,在上面添加获取参数控件数值,在跳转里面把参数值带进去。