如何使用 dijit.layout.TabContainer 指定选定的选项卡?
- 如何在启动时指定选定的选项卡?
- 如何以编程方式选择选项卡?
- How do you specify the selected tab at startup?
- How do you programmatically select tabs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HTML - 使用 selected 属性。
JavaScript - 在 TabContainer 小部件上使用 selectChild 方法。
您可以在这里找到更多示例:TabContainer 演示
警告!!! 该演示来自夜间构建。 1.3.2 版本中并未包含所有功能。
HTML - Use selected attribute.
JavaScript - Use selectChild method on TabContainer widget.
You can find more examples here: TabContainer Demo
WARNING!!! This demo is from nightly build. Not all features are included in 1.3.2 version.
您可以使用 selected 属性指定启动时显示的选项卡。
TabContainer 启动后,您可以将 selectChild 与 id 或对小部件的引用一起使用。 请注意,在 TabContainer 启动之前调用 selectChild 会导致错误。
You can specify the tab to display at startup with the selected attribute.
After the TabContainer startup, you can use selectChild with the id or the reference to the widget. Note that calling selectChild before the TabContainer startup results in an error.