本帖最后由 nice 于 2014-9-11 14:55 编辑
在视图的工具栏,创建一个帮助按钮,类型为跳转类型,
脚本如下:
var request = $WEB.getParamsTable().getHttpRequest();
var url1="http://" + request.getServerName()+":" + request.getServerPort() + request.getContextPath();
url1=url1+"/portal/share/help/help-eps.html";
url1;
通过执行脚本,网页直接显示在当前窗口中了,
想实现,弹出一个新的窗口显示该网页。 |