ant-design/components/cascader/demo/hover.md

58 lines
927 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-12-22 16:23:33 +08:00
order: 3
title:
zh-CN: 移入展开
en-US: Hover
2016-03-31 09:40:55 +08:00
---
2015-12-29 11:46:13 +08:00
## zh-CN
2015-12-29 11:46:13 +08:00
通过移入展开下级菜单,点击完成选择。
## en-US
Hover to expand sub menu, click to select option.
2017-02-13 10:55:53 +08:00
````jsx
2015-12-29 11:46:13 +08:00
import { Cascader } from 'antd';
const options = [{
value: 'zhejiang',
2016-09-10 18:23:24 +08:00
label: 'Zhejiang',
2015-12-29 11:46:13 +08:00
children: [{
value: 'hangzhou',
2016-09-10 18:23:24 +08:00
label: 'Hangzhou',
2015-12-29 11:46:13 +08:00
children: [{
value: 'xihu',
2016-09-10 18:23:24 +08:00
label: 'West Lake',
2015-12-29 11:46:13 +08:00
}],
}],
}, {
value: 'jiangsu',
2016-09-10 18:23:24 +08:00
label: 'Jiangsu',
2015-12-29 11:46:13 +08:00
children: [{
value: 'nanjing',
2016-09-10 18:23:24 +08:00
label: 'Nanjing',
2015-12-29 11:46:13 +08:00
children: [{
value: 'zhonghuamen',
2016-09-10 18:23:24 +08:00
label: 'Zhong Hua Men',
2015-12-29 11:46:13 +08:00
}],
}],
}];
function onChange(value) {
console.log(value);
}
2016-09-10 18:23:24 +08:00
// Just show the latest item.
2015-12-29 11:46:13 +08:00
function displayRender(label) {
return label[label.length - 1];
}
ReactDOM.render(
<Cascader options={options} expandTrigger="hover"
displayRender={displayRender} onChange={onChange}
/>
2015-12-29 11:46:13 +08:00
, mountNode);
````