我已经尝试导航到一个页面内的特定部分我尝试在组件中添加id,但它不像那样工作。
pgx2nnw81#
const goToSection=(id)=>{ const targetSection = document.getElementById(id); if(targetSection != null) { window.scrollTo({ top:targetSection.offsetTop, behavior:"smooth", }); } }
或者你可以使用useRef钩子。
1条答案
按热度按时间pgx2nnw81#
或者你可以使用useRef钩子。