在html或jsp檔案中的<head></head>中加入<html:base/>
然後我們就可以在應用的時候通過右鍵->查看原始碼中找到頁面的名稱了
樣本如下:
<html>
<head>
<base href="http://localhost:8091/business/drawbill.jsp">
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<link href="../css/style.css" type="text/css" rel="stylesheet">
<script src="../js/public.js" language="javascript"></script>
<script src="../js/tableValidate.js" language="javascript"></script>
<title></title>
<script language="javaScript">
function submitForm(){
var rows = document.all.mmTable.rows.length;
if (rows<4){
alert("對不起,本單沒有物資申請資訊,不能提交! ");
return false;
}
//驗證及提交
if(validate('billTable','left') && validate('billBottomTable','left') && validate('mmTable','top')){
if(confirm("本單將提交至領導審批,您確定要執行當前操作嗎?")){
document.theForm.refer.value='正在提交,請稍候...';
document.theForm.refer2.value='正在提交,請稍候...';
document.theForm.refer.disabled=true;
document.theForm.refer2.disabled=true;
document.all.theForm.action="submitDrawBill.do";
document.all.theForm.submit();
return true;
}
}
}
function saveForm(){
if(confirm("本單將儲存,您確定要執行當前操作嗎?")){
document.theForm.refer.value='正在儲存,請稍候...';
document.theForm.refer2.value='正在儲存,請稍候...';
document.theForm.refer.disabled=true;
document.theForm.refer2.disabled=true;
document.all.theForm.action="saveDrawBill.do";
document.all.theForm.submit();
return true;
}
}
</script>
</head>