在开发中较为常用的表单控件:隐藏域
将内容隐藏起来,使用户不能修改,之后一起提交到服务器上显示
demo05.html
<html>
<body>
<form action="demo06.jsp" method="post">
<input type="hidden" name="uname" value="mldn">
<input type="submit" value="提交">
</form>
</body>
</html>
demo06.html
<%@ page contentType="text/html; charset=gbk"%>
<html>
<body>
<%
request.setCharacterEncoding("GB2312");
String name=request.getParameter("uname");
%>
<h1>内容为:<%=name%></h1>
</body>
</html>
demo06.html显示结果
646

被折叠的 条评论
为什么被折叠?



