如何?通過右鍵查看原始碼來查看jsp頁面的名字

來源:互聯網
上載者:User

在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>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.