--- order: 0 title: zh-CN: 向上展开 en-US: Placement --- ## zh-CN 向上展开建议。 ## en-US Change the suggestions placement. ````jsx import { Mention } from 'antd'; const { toString } = Mention; function onChange(contentState) { console.log(toString(contentState)); } function onSelect(suggestion) { console.log('onSelect', suggestion); } ReactDOM.render( , mountNode ); ````