将 JavaScript 代码合并到中使用 sitemesh 和 jsp
我正在使用 sitemesh 来装饰我的网页。有人可以指导我最佳实践吗? header.jsp
和 sidebar.jsp
具有 JavaScript 代码依赖项,我想将它们与正在装饰的主页一起合并到 head 中。
基本上我想装饰 HTML 和 。
I'm using sitemesh to decorate my web pages. Can someone guide me on the best practice. The header.jsp
and sidebar.jsp
have JavaScript code dependencies and I would like to merge these into the head along with the main page which is being decorated.
Basically I want to decorate both the HTML and the <head>
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果healder.jsp中的代码位于
之间,则sitemesh默认会将其附加到
中主装饰器的code>。
If the code in healder.jsp is between
<head></head>
, sitemesh will, by default, append it into the<head></head>
of the main decorator.