`
JAVAPOWER
  • 浏览: 47533 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

Reading Notes

阅读更多
1. Jsp 页面 动态和静态 include 指令的不同

静态: index.jsp
<%@ include file="MyJsp.jsp" %>
<html>
  <head>
    <title>My JSP 'index.jsp' starting page</title>
  </head>
  <body> 
    <%= Here we can use instance variable declared in MyJsp.jsp page %>
  </body>
</html>

动态:
<html>
  <head>
    <title>My JSP 'index.jsp' starting page</title>
  </head>
  <body>
    <jsp:include page="index.jsp" />
    <%= Here we can not use instance variable declared in MyJsp.jsp page %>
  </body>
</html>

总结 :
    静态 include 指令是将 MyJsp.jsp 页面完全整合到 index.jsp 页面中,只生成一个 servlet
    动态 include 指令虽然也将 MyJsp.jsp 页面包含到 index.jsp 页面中,但是该指令生成的是两个 servlet,各页面分别编译为一个 servlet


2. 超链接提交表单,并打开新窗口(在新页面中获取表单值)
<form name="myForm" method="post" action="MyJsp.jsp" target="_blank">
    <input type="hidden" name="attr1" value="test1">
    <a href="" onclick="javascript:myForm.submit();">Submit</a>
</form>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics