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.

61 lines
939 B

---
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',
9 years ago
children: [{
value: 'hangzhou',
label: 'Hangzhou',
9 years ago
children: [{
value: 'xihu',
label: 'West Lake',
9 years ago
}],
}],
}, {
value: 'jiangsu',
label: 'Jiangsu',
9 years ago
children: [{
value: 'nanjing',
label: 'Nanjing',
9 years ago
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}
/>
9 years ago
, mountNode);
````