如何从jsp包含引用一个jsp的链接内容?
index.jsp
<%@ include file="link.jsp"%>
<html>
//can I get the link.jsp link from here with this include?
</html>
link.jsp
<html>
<a href"someplace"></a> <--I want this to be a reference to other jsps
</html&
每次通过Ajax调用成功加载页面时,我都希望在jsp页面中调用一个函数。考虑如下:
|Main.jsp--------------------------------------|
| Link A Link B Link C |
| |
| -<div id="content">---------- |
| | | |
我有一个home.jsp页面和一个login.jsp页面
home.jsp
我有3个div标签
div id="header"
div id="content"
div id="footer"
1)当我单击Login页面中的home.jsp链接时,它会重定向到login.jsp页面,i need:应该显示在home.jsp页面中的div id="content“标签上。
我的要求是 ::home.jsp应该是我的主page..the页眉,页脚不应该改变,只有曾经更改的内容应该显示在带有id="content"
我想把一些html元素动态地插入到jsp文件的模板中。
我知道我可以通过使用javascript的代码片段来做到这一点,但我想知道有没有更好的方法?
下面是我的例子:
myTemplate.jsp
......
<div id="content"></div>
.....
myPage.jsp
<jsp:include page="myTemplate.jsp"></jsp:include>
//This the line which I'm searching if there is.
setConte