1
使用jsp可以根據之前的頁面輸入動態改變網頁中的內容嗎? 請爲我提供一些示例代碼。提前致謝。是否可以根據之前的頁面輸入動態地改變網頁中的內容使用jsp
使用jsp可以根據之前的頁面輸入動態改變網頁中的內容嗎? 請爲我提供一些示例代碼。提前致謝。是否可以根據之前的頁面輸入動態地改變網頁中的內容使用jsp
是的,這是可能的。
讓你有一個以前的頁面的index.jsp(或者如果沒有處理完成,那麼就可以的index.html)
<html>
<head></head>
<body>
<form action="nextPage.jsp" method="POST">
Name <input type="text" name="user_name">
<input type="submit" name="submit_form">
</form>
</body>
</html>
,並在JSP側即NextPage.jsp上 ,使用下面的代碼:
String str=request.getParameter("user_name");
out.println("Hello "+ str);
這只是演示,您可以根據您的要求使用你的代碼的N個邏輯。