--- order: 0 title: zh-CN: 顶部导航 en-US: Top Navigation --- ## zh-CN 水平的顶部导航菜单。 ## en-US Horizontal top navigation menu. ````jsx import { Menu, Icon } from 'antd'; const SubMenu = Menu.SubMenu; const MenuItemGroup = Menu.ItemGroup; const App = React.createClass({ getInitialState() { return { current: 'mail', }; }, handleClick(e) { console.log('click ', e); this.setState({ current: e.key, }); }, render() { return ( 导航一 导航二 导航 - 子菜单}> 选项1 选项2 选项3 选项4 导航四 - 链接 ); }, }); ReactDOM.render(, mountNode); ````