在我的購物車中,logout.jsp頁面內容未加載。屏幕上只顯示一個空白頁面。當我看到查看源它顯示,直到onLoad =「closeWarningMessage();」 。它沒有顯示任何寫在Jsp主體中的組件。請建議如何解決這個問題。下面是我的logout.jspjsp頁面未顯示預期輸出,頁面內容未加載
<! doctype html>
<html language="en">
<%@ page language="java" contentType="text/html" %>
<%@ session ="false" %>
<head>
<script type="text/javascript">
function closeWarningMessage() {
for (var i=0; i<document.forms.length; i++) {
document.forms[i].reset();
}
}
</script>
</head>
<body onLoad="closeWarningMessage();">// page loaded till here
<jsp:include flush="true" page="/myCart/logoutHeader.jsp"/>
<form>
// form body......
</form>
</body>
</html>
感謝BalusC,有沒有其他方法可以包含jsp。所以它沒有顯示異常。請提出建議 – Raj 2012-01-17 07:55:29