--- order: 2 title: zh-CN: 可以自定义显示 en-US: Custom trigger --- ## zh-CN 切换按钮和结果分开。 ## en-US Separate trigger button and result. ```tsx import { Cascader } from 'antd'; import React, { useState } from 'react'; interface Option { value: string; label: string; children?: Option[]; } const options: Option[] = [ { value: 'zhejiang', label: 'Zhejiang', children: [ { value: 'hangzhou', label: 'Hangzhou', }, ], }, { value: 'jiangsu', label: 'Jiangsu', children: [ { value: 'nanjing', label: 'Nanjing', }, ], }, ]; const App: React.FC = () => { const [text, setText] = useState('Unselect'); const onChange = (_: string[], selectedOptions: Option[]) => { setText(selectedOptions.map(o => o.label).join(', ')); }; return ( {text}   Change city ); }; export default App; ```