JSP 表单中 Web 模板的使用
我设计了一些 JSP 表单,并且需要在该 JSP 表单中集成任何 Web 模板。
我是JSP的初学者,我完全不知道JSP中此类Web模板的用法。
任何能帮助我继续完成任务的解释/来源都会有很大帮助。
提前感谢大家。等待您有用的回复。
更新
另外让我知道可以从网上下载的模型网页模板。我的最终目标是以良好的方式呈现我的 JSP 表单。
I have designed few JSP forms and I am in need of integrating any web template in that JSP form.
I am a beginner in JSP and I am completely unaware of such web templates usage in JSP.
Any sort of explanation/sources that would help me in proceeding with my task would be of great help.
Thanks everyone in advance. Waiting for your helpful replies.
UPDATE
Also let me know model web templates that can be downloaded from net. My ultimate aim is to present my JSP form in a good way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这与JSP完全无关。 JSP 只是提供了一种使用 Java 以编程方式控制 HTML/CSS/JS 输出的方法。浏览器获取和理解的所有内容都是 HTML/CSS/JS。您可以使用 HTML 控制标记。您可以使用 CSS 控制样式(外观)。您可以使用 JS 控制渐进增强。
所以,真正的答案是:使用 CSS。
参考资料:
相关问题:
This is completely unrelated to JSP. JSP just offers a way to control the HTML/CSS/JS output programmatically using Java. All the browser gets and understands is HTML/CSS/JS. You control markup with HTML. You control style (look'n'feel) with CSS. You control progressive enhancements with JS.
So, the real answer is: use CSS.
References:
Related questions: