--- order: 2 title: zh-CN: 滚动容器 en-US: Container to scroll. --- ## zh-CN 用 `target` 设置 `Affix` 需要监听其滚动事件的元素,默认为 `window`。 ## en-US Set a `target` for 'Affix', which is listen to scroll event of target element (default is `window`). ````jsx import { Affix, Button } from 'antd'; class Demo extends React.Component { render() { return (
{ this.container = node; }}>
this.container}>
); } } ReactDOM.render(, mountNode); ````