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.
我注意到每次我打开和关闭(通过单击菜单项或单击菜单外的某个区域)上下文菜单(Ext.menu.Menu)时,<div>s 不会从 DOM 中删除,它们会以某种方式变得不可见。
Ext.menu.Menu
<div>
如何改变这个?
你可以试试这个来破坏整个组件 -
listeners: { hide:function(menu, opt){ Ext.destroy(menu); } }
但是您必须创建Ext.menu.Menu,下次单击菜单按钮时。