You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
1.1 KiB

---
order: 3
title:
zh-CN: 移入展开
en-US: Hover
---
9 years ago
## zh-CN
9 years ago
通过移入展开下级菜单,点击完成选择。
## en-US
Hover to expand sub menu, click to select option.
```jsx
9 years ago
import { Cascader } from 'antd';
const options = [
{
value: 'zhejiang',
label: 'Zhejiang',
children: [
{
value: 'hangzhou',
label: 'Hangzhou',
children: [
{
value: 'xihu',
label: 'West Lake',
},
],
},
],
},
{
value: 'jiangsu',
label: 'Jiangsu',
children: [
{
value: 'nanjing',
label: 'Nanjing',
children: [
{
value: 'zhonghuamen',
label: 'Zhong Hua Men',
},
],
},
],
},
];
9 years ago
function onChange(value) {
console.log(value);
}
// Just show the latest item.
9 years ago
function displayRender(label) {
return label[label.length - 1];
}
ReactDOM.render(
<Cascader
options={options}
expandTrigger="hover"
displayRender={displayRender}
onChange={onChange}
/>,
mountNode,
);
```