tabPanel 实现鼠标划过切换tab

Ext.getCmp('flashTab').strip.dom.onmousemove = function(e) { e = Ext.EventObject; var t = Ext.getCmp('flashTab'); var s = Ext.getCmp('flashTab').strip; var iel = e.getTarget('li', s); var item = null; if (iel) { item = t.getComponent(iel.id.split(t.idDelimiter)[1]); } if (item && item != t.activeTab) { t.setActiveTab(item); } }

你可能感兴趣的:(function,null)