我正在忙于一个基本上有5个页面的网络应用程序,可以从导航栏跳转到(显然)。但是,不是使用链接正常的原因,你将完全定向到不同的网页,我想把所有内容保存在我的“index.html”中。因此,当您点击其中一个导航栏链接时,iFrame将填充不同的文档,例如about.html,controlpanel.html,profile.html等...
这是一种好的做法还是有更好的方法可以做到这一点?
提前致谢!
答案 0 :(得分:2)
我看到的一个问题是,您的用户将无法为您的网页添加书签/共享链接。
他们只能使用/index.html
。
根据您的评论,为了避免编码页眉/页脚的冗余,我建议这样做:
<强> init.jsp 强>
Declare all imports, taglibs, any global variables here.
<强> header.jsp中强>
<%@ include file="init.jsp" %>
Write code for header here
<强> footer.jsp中强>
<%@ include file="init.jsp" %>
Write code for footer here
<强>的Page1.jsp 强>
<%@ include file="init.jsp" %>
<%@ include file="header.jsp" %>
Write main code here.
<%@ include file="footer.jsp" %>
<强> page2.jsp 强>
<%@ include file="init.jsp" %>
<%@ include file="header.jsp" %>
Write main code here.
<%@ include file="footer.jsp" %>