Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够隐藏选项卡标题附近的“x”按钮,并且能够在没有低级代码操作 DOM 的情况下将其显示回来,但如果可能的话,可以使用组件级 api 函数。
您应该手动隐藏 DOM 中的关闭按钮。
我在 ExtJS 3 API 页面上测试了这段代码。它在第二个选项卡上切换关闭按钮:
var tabPanel = Ext.getCmp('doc-body'); var tabHeader = tabPanel.items.get(1).tabEl; Ext.get(tabHeader).down('a.x-tab-strip-close').toggleClass('x-hidden')