希望阻止事件传播
onChange(currentPage, e){
e.stopPropagation()
......
}
It will be better to write your issue/comment in English, so more people can understand you.
And this means that more people can help you or benefit from your issue/comment.
See: https://github.com/ant-design/ant-design/issues/4897
function handleClick(e) {
// do whatever you like with event object
}
<div onClick={handleClick}>
<Pagination />
</div>
@paranoidjk thanks!
Most helpful comment