You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
727 B
23 lines
727 B
3 months ago
|
<%@page contentType="text/html; charset=utf-8"%>
|
||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||
|
<HTML>
|
||
|
<HEAD>
|
||
|
<TITLE>wat application</TITLE>
|
||
|
<META http-equiv="content-Type" content="text/html;charset=UTF-8">
|
||
|
</HEAD>
|
||
|
<script>
|
||
|
function initApp() {
|
||
|
var oUrl = "<%=request.getContextPath()%>/start";
|
||
|
window.opener = null;
|
||
|
var nw = window.open(oUrl, "", "left=0;top=0;toolbar=no,location=no,directories=no,width=1000,height=1000;status=no,menubar=no,scrollbars=no,resizable=no");
|
||
|
if(nw==null){
|
||
|
}else{
|
||
|
window.close();
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
<BODY onload="initApp()">
|
||
|
因为您启用了弹出窗口屏蔽功能,请点击<a href="javascript:initApp()">这里</a>登录。
|
||
|
</BODY>
|
||
|
</HTML>
|