网页上有多个选项卡

发布于 2024-09-30 10:29:55 字数 64 浏览 2 评论 0原文

如何向 jsp 页面添加多个选项卡?我使用的是struts,有没有可以使用的jsp标签库?

谢谢,

How can I add multiple tabs to a jsp page ? I'm using struts, are there any jsp tag librarys I can use ?

Thanks,

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

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

发布评论

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

评论(3

酒绊 2024-10-07 10:29:55

在这里您可以找到专门介绍 Struts 选项卡式布局的页面。

对于 Struts2,您可以查看 RoseIndia 的 TabbedLayout 教程

Here you can find a page dedicated to Struts Tabbed Layout.

For Struts2 you can check RoseIndia's tutorial on TabbedLayout.

天赋异禀 2024-10-07 10:29:55

Struts2 有一个 TabbedPanel 标签

http: //struts.apache.org/2.0.11/struts2-core/apidocs/org/apache/struts2/components/TabbedPanel.html

这是一个如何使用它的示例:

 <s:tabbedPanel id="test" >
    <s:div id="one" label="one" theme="ajax" labelposition="top" >
        This is the first pane<br/>
        <s:form>
            <s:textfield name="tt" label="Test Text"/>  <br/>
            <s:textfield name="tt2" label="Test Text2"/>
        </s:form>
    </s:div>
    <s:div id="three" label="remote" theme="ajax" href="/AjaxTest.action" >
        This is the remote tab
    </s:div>
 </s:tabbedPanel>

Struts2 has a TabbedPanel tag

http://struts.apache.org/2.0.11/struts2-core/apidocs/org/apache/struts2/components/TabbedPanel.html

here is an example how to use it:

 <s:tabbedPanel id="test" >
    <s:div id="one" label="one" theme="ajax" labelposition="top" >
        This is the first pane<br/>
        <s:form>
            <s:textfield name="tt" label="Test Text"/>  <br/>
            <s:textfield name="tt2" label="Test Text2"/>
        </s:form>
    </s:div>
    <s:div id="three" label="remote" theme="ajax" href="/AjaxTest.action" >
        This is the remote tab
    </s:div>
 </s:tabbedPanel>
书间行客 2024-10-07 10:29:55

我不知道您想要对选项卡执行什么操作,就我而言,我只想在不同选项卡中显示信息,我不需要在每个选项卡更改中触发操作。

出于我的目的,我使用 jquery:

http://docs.jquery.com/UI/Tabs#overview

I don´t know what you want to do exactly with the tabs, In my case I only want to show information in different tabs, I don´t need an action is trigger in every tab change.

For my purpose, I use jquery:

http://docs.jquery.com/UI/Tabs#overview

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文