반응 - 목록 항목에 포커스를 주는 방법은 무엇입니까?
3564 단어 webdev
예를 들어,
웹 사이트를 방문하여 메뉴 항목을 클릭하면 다른 페이지를 보여주는 다른 경로로 이동합니다.
그러나 메뉴 항목에는 배경색(포커스)이 있습니다.
해당 기능을 구현하는 방법을 보여 드리겠습니다.
import {useLocation} from 'react-router-dom'
react-router-dom 라이브러리를 사용하여 이 작업을 수행합니다.
useLocation
라는 후크가 있습니다.const location = useLocation();
const styles = {
active: {
background: '#f4f4f4'
}
}
return (
<List>
{menuItems.map(item => (
<ListItem sx={location.pathname === item.path ? styles.active : null}>
<ListItemIcon>{item.icon}</ListItemIcon>
<ListItemText primary={item.text}/>
</ListItem>
))}
</List>
)
중요한 부분
<ListItem sx={location.pathname === item.path ? styles.active : null}>
Reference
이 문제에 관하여(반응 - 목록 항목에 포커스를 주는 방법은 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/artemismars/react-how-to-give-a-focus-to-a-list-item-2onj텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)