toolbar.js
来自「Java开的发文件管理系统,可以管理整个服务器的文件,并按要求进行处理!」· JavaScript 代码 · 共 24 行
JS
24 行
/** * @author Administrator */Ext.onReady(function(){ // Buttons added to the toolbar of the Panel above // to test/demo doing group operations with an action var tb = new Ext.Toolbar(); tb.render('toolbar'); tb.add('->', { iconCls: 'logout', text: 'Logout', handler: function(){ Ext.Msg.confirm('Logout', 'Are you sure?', function(btn, text){ if (btn == 'yes') { alert('yes'); } }); } });});
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?