如何使用JSTL为pyramID的特定ID页面设置页面标题

时间:2012-09-09 01:02:37

标签: java jsp title tiles

使用Tiles和JSP。在JSP上,使用${param.ID}获取特定页面。

sub-category.jsp

<jsp:include page="categories/sub-category/${param.ID}.jsp" flush="true" />

/sub-category/test-page.jsp是一个ID

我需要找到一种方法让test-page.jsp拥有自己唯一的页面标题,我可以将其插入test-page.jsp

1 个答案:

答案 0 :(得分:0)

我假设您要根据加载的页面更改网页标题(例如test-page.jsp)。

如果是这样,那么在test-page.jsp中,你可以写

<script>
    document.title = "My Title";
</script>

或在document.onload()中写入

最好是jquery.ready功能