0

我必须在 ext js 中按钮的单击事件中加载一个新的 jsp 页面。我把代码这样

    listeners: {
       'click': function(){
          alert("hai");
          window.open('<%=request.getContextPath()%>/jsp/dashboard/helpwindow.jsp','_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=700,height=600');
       }
   }

但这并没有给我结果。'<%=request.getContextPath()%>' 有问题。

现在打开带有 url 的新窗口

http://localhost:8080/hiring/%3C%=request.getContextPath%28%29%%3E/jsp/dashboard/helpwindow.jsp

但我需要网址

http://localhost:8080/hiring/jsp/dashboard/helpwindow.jsp

请帮我解决这个问题。

4

1 回答 1

0
listeners: {

  'click': function() {                 
       var serverPath = window.location.href;
       var serverPathIndex = serverPath.lastIndexOf("/");
       window.open(serverPath.substring(0, serverPathIndex) + '/jsp/dashboard/helpwindow.jsp','_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=700,height=600');
   }
}
于 2012-07-10T03:35:37.400 回答