如何保存用户选择的网页主题

发布于 2024-07-30 00:40:15 字数 491 浏览 3 评论 0原文

我有一个简单的 Web 应用程序,它是由几个 JSP 页面完成的。 我想给它添加一些风格。 我想提供一些颜色主题选项,比如在下拉框中。 我对 CSS 的基础知识很少。 这是我的问题:

  1. 我认为我应该将所有样式放在一个 CSS 文件中,并使用像 selector# Different_ids {property:value} 这样的格式来保留所有样式,这是正确的吗?
  2. 一旦选择了主题,应该如何保存? 每次都使用 request.getParameter("") 还是使用 JavaScript?
  3. 如何根据保存的选择更改主题? 如果我在Java中使用if..else if,并将每个标签与different_ids相应的id相关联,这是否正确?
  4. 如何将主题选择从一个页面传递到另一个页面? 应该用 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:

  1. 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?
  2. Once a theme is selected, how should it be saved? using request.getParameter("") every time or use JavaScript?
  3. 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 for different_ids?
  4. How can the theme selection be passed from page to page? Should it be done with JavaScript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热风软妹 2024-08-06 00:40:15
  • 为选择创建一个 cookie。
    这将通过选择
    一页一页地。
  • 将每个主题放入不同的 css 中
    文件。
  • 链接适当的 css 文件
    根据选择
  • create a cookie for the selection.
    that will pass the selection from
    page to page.
  • put each theme into different css
    files.
  • link the appropriate css file
    according to the selection
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文