如何保存用户选择的网页主题
我有一个简单的 Web 应用程序,它是由几个 JSP 页面完成的。 我想给它添加一些风格。 我想提供一些颜色主题选项,比如在下拉框中。 我对 CSS 的基础知识很少。 这是我的问题:
- 我认为我应该将所有样式放在一个 CSS 文件中,并使用像
selector# Different_ids {property:value}
这样的格式来保留所有样式,这是正确的吗? - 一旦选择了主题,应该如何保存? 每次都使用
request.getParameter("")
还是使用 JavaScript? - 如何根据保存的选择更改主题? 如果我在Java中使用
if..else if
,并将每个标签与different_ids
相应的id相关联,这是否正确? - 如何将主题选择从一个页面传递到另一个页面? 应该用 JavaScript 来完成吗?
I have a simple web app, it's done with several JSP pages. I would like to add some style to it. I would like to provide some color theme options say like in a drop down box. I have little basic knowledge of CSS. Here are my questions:
- I think I should have all styles in one CSS file, and use format like
selector#different_ids {property:value}
to keep all styles, is that correct? - Once a theme is selected, how should it be saved? using
request.getParameter("")
every time or use JavaScript? - How can I change the theme according to the saved selection? Would it be correct if I use
if..else if
in Java, and associate each tag with corresponding id fordifferent_ids
? - How can the theme selection be passed from page to page? Should it be done with JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将通过选择
一页一页地。
文件。
根据选择
that will pass the selection from
page to page.
files.
according to the selection