You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
example/web/inputOutput.jsp

21 lines
549 B

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<title>文本框输入显示</title>
</head>
<body>
<c:choose>
<c:when test="${not empty param.inputText}">
<h1>输入的内容是:${param.inputText}</h1>
</c:when>
<c:otherwise>
<form action="inputDisplay.jsp" method="post">
<input type="text" name="inputText" placeholder="请输入内容" />
<button type="submit">提交</button>
</form>
</c:otherwise>
</c:choose>
</body>
</html>