old->:直接覆盖原来的页面显示
<body>
<form method="post" action="http://127.0.0.1:9111/aaa/loginActionForword!loginActionForword.action" >
<input type="hidden" id="userCode" name="userCode" value="a">
<input type="hidden" id="password" name="password" value="b">
<input type="hidden" id="corpCode" name="corpCode" value="c">
<input type="hidden" id="jumpFlag" name="jumpFlag" value="dianxin">
<input type="submit" name="submit" value="免登陆跳转到new平台" />
</form>
</body>
new->:
调整后家了一个target="_black"标签,这样点击打开页面的时候就是重新打开一个页面显示
<body>
<form method="post" action="http://127.0.0.1:9111/aaa/loginActionForword!loginActionForword.action" target="_black">
<input type="hidden" id="userCode" name="userCode" value="a">
<input type="hidden" id="password" name="password" value="b">
<input type="hidden" id="corpCode" name="corpCode" value="c">
<input type="hidden" id="jumpFlag" name="jumpFlag" value="dianxin">
<input type="submit" name="submit" value="免登陆跳转到new平台" />
</form>
</body>